You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
415 B
9 lines
415 B
export declare class ParseError extends Error {
|
|
/** The index of the start character of the current token. */
|
|
sourceStart: number;
|
|
/** The index of the end character of the current token. */
|
|
sourceEnd: number;
|
|
/** The parser steps that preceded the error. */
|
|
parserState: Array<string>;
|
|
constructor(message: string, sourceStart: number, sourceEnd: number, parserState: Array<string>);
|
|
}
|
|
|