EITS-web/node_modules/svelte-eslint-parser/lib/errors.js
2025-12-06 09:54:52 -05:00

16 lines
358 B
JavaScript

/**
* Svelte parse errors.
*/
export class ParseError extends SyntaxError {
/**
* Initialize this ParseError instance.
*/
constructor(message, offset, ctx) {
super(message);
this.index = offset;
const loc = ctx.getLocFromIndex(offset);
this.lineNumber = loc.line;
this.column = loc.column;
}
}