antlr4ng
Version:
Alternative JavaScript/TypeScript runtime for ANTLR4
10 lines (9 loc) • 353 B
TypeScript
import { RecognitionException } from "./RecognitionException.js";
import { Parser } from "./Parser.js";
/**
* This signifies any kind of mismatched input exceptions such as
* when the current input does not match the expected token.
*/
export declare class InputMismatchException extends RecognitionException {
constructor(recognizer: Parser);
}