UNPKG

antlr4-runtime

Version:

JavaScript runtime for ANTLR4

17 lines (15 loc) 696 B
/* Copyright (c) 2012-2022 The ANTLR Project Contributors. All rights reserved. * Use is of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ import RecognitionException from "./RecognitionException.js"; /** * This signifies any kind of mismatched input exceptions such as * when the current input does not match the expected token. */ export default class InputMismatchException extends RecognitionException { constructor(recognizer) { super({message: "", recognizer: recognizer, input: recognizer.getInputStream(), ctx: recognizer._ctx}); this.offendingToken = recognizer.getCurrentToken(); } }