-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Francisco Rodriguez Elorza <francisco.rodriguez.elorza@oracle.com>
- Loading branch information
Francisco Rodriguez Elorza
committed
Nov 19, 2024
1 parent
0217051
commit 415030c
Showing
1 changed file
with
1 addition
and
14 deletions.
There are no files selected for viewing
15 changes: 1 addition & 14 deletions
15
runtime/JavaScript/src/antlr4/error/DiagnosticErrorListener.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,3 @@ | ||
import {ATNConfigSet} from "../atn"; | ||
import {BitSet} from "../misc/BitSet"; | ||
import {DFA} from "../dfa"; | ||
import {ErrorListener} from "./ErrorListener"; | ||
import {Recognizer} from "../Recognizer"; | ||
import {RecognitionException} from "./RecognitionException"; | ||
|
||
export declare class DiagnosticErrorListener<TSymbol> implements ErrorListener<TSymbol> { | ||
reportAmbiguity(recognizer: Recognizer<TSymbol>, dfa: DFA, startIndex: number, stopIndex: number, exact: boolean, ambigAlts: BitSet, configs: ATNConfigSet): void; | ||
|
||
reportAttemptingFullContext(recognizer: Recognizer<TSymbol>, dfa: DFA, startIndex: number, stopIndex: number, conflictingAlts: BitSet, configs: ATNConfigSet): void; | ||
|
||
reportContextSensitivity(recognizer: Recognizer<TSymbol>, dfa: DFA, startIndex: number, stopIndex: number, prediction: number, configs: ATNConfigSet): void; | ||
|
||
syntaxError(recognizer: Recognizer<TSymbol>, offendingSymbol: TSymbol, line: number, column: number, msg: string, e: RecognitionException | undefined): void; | ||
} | ||
export declare class DiagnosticErrorListener<TSymbol> extends ErrorListener<TSymbol> {} |