1 |
|
2 |
|
3 |
|
4 |
|
5 | import { ATNConfigSet } from "./atn/ATNConfigSet";
|
6 | import { RecognitionException } from "./RecognitionException";
|
7 | import { Lexer } from "./Lexer";
|
8 | import { CharStream } from "./CharStream";
|
9 | export declare class LexerNoViableAltException extends RecognitionException {
|
10 |
|
11 | private _startIndex;
|
12 |
|
13 | private _deadEndConfigs?;
|
14 | constructor(lexer: Lexer | undefined, input: CharStream, startIndex: number, deadEndConfigs: ATNConfigSet | undefined);
|
15 | get startIndex(): number;
|
16 | get deadEndConfigs(): ATNConfigSet | undefined;
|
17 | get inputStream(): CharStream;
|
18 | toString(): string;
|
19 | }
|