Skip to content

v0.2.0-alpha.5

Latest

Choose a tag to compare

@github-actions github-actions released this 23 Nov 11:45
Immutable release. Only release title and notes can be modified.
e1e539f

Changed

  • Changed the diagnostics format such that locations look like this:

    location: {
      start: {
        line: 6,    // 1-based, inclusive
        column: 33, // 1-based, inclusive
        offset: 127 // 0-based, inclusive
      },
      end: {
        line: 6,    // 1-based, inclusive
        column: 40, // 1-based, inclusive
        offset: 135 // 0-based, exclusive ← this offset is exclusive, unlike the start offset
      }
    },

    Note: you can either provide the line/column, or the offset, or both but not nothing.