1 |
|
2 |
|
3 |
|
4 |
|
5 | import { ANTLRErrorListener } from "./ANTLRErrorListener";
|
6 | import { RecognitionException } from "./RecognitionException";
|
7 | import { Recognizer } from "./Recognizer";
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | export declare class ProxyErrorListener<TSymbol, TListener extends ANTLRErrorListener<TSymbol>> implements ANTLRErrorListener<TSymbol> {
|
16 | private delegates;
|
17 | constructor(delegates: TListener[]);
|
18 | protected getDelegates(): ReadonlyArray<TListener>;
|
19 | syntaxError<T extends TSymbol>(recognizer: Recognizer<T, any>, offendingSymbol: T | undefined, line: number, charPositionInLine: number, msg: string, e: RecognitionException | undefined): void;
|
20 | }
|