antlr4ts
Version:
ANTLR 4 runtime for JavaScript written in Typescript
33 lines • 1.07 kB
JavaScript
/*!
* Copyright 2016 The ANTLR Project. All rights reserved.
* Licensed under the BSD-3-Clause license. See LICENSE file in the project root for license information.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConsoleErrorListener = void 0;
/**
*
* @author Sam Harwell
*/
class ConsoleErrorListener {
/**
* {@inheritDoc}
*
* This implementation prints messages to {@link System#err} containing the
* values of `line`, `charPositionInLine`, and `msg` using
* the following format.
*
* <pre>
* line *line*:*charPositionInLine* *msg*
* </pre>
*/
syntaxError(recognizer, offendingSymbol, line, charPositionInLine, msg, e) {
console.error(`line ${line}:${charPositionInLine} ${msg}`);
}
}
exports.ConsoleErrorListener = ConsoleErrorListener;
/**
* Provides a default instance of {@link ConsoleErrorListener}.
*/
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
//# sourceMappingURL=ConsoleErrorListener.js.map
;