1 |
|
2 |
|
3 |
|
4 |
|
5 | import { ATN } from "./atn/ATN";
|
6 | import { CharStream } from "./CharStream";
|
7 | import { Lexer } from "./Lexer";
|
8 | import { Vocabulary } from "./Vocabulary";
|
9 | export declare class LexerInterpreter extends Lexer {
|
10 | protected _grammarFileName: string;
|
11 | protected _atn: ATN;
|
12 | protected _ruleNames: string[];
|
13 | protected _channelNames: string[];
|
14 | protected _modeNames: string[];
|
15 | private _vocabulary;
|
16 | constructor(grammarFileName: string, vocabulary: Vocabulary, ruleNames: string[], channelNames: string[], modeNames: string[], atn: ATN, input: CharStream);
|
17 | get atn(): ATN;
|
18 | get grammarFileName(): string;
|
19 | get ruleNames(): string[];
|
20 | get channelNames(): string[];
|
21 | get modeNames(): string[];
|
22 | get vocabulary(): Vocabulary;
|
23 | }
|