bitmark-grammar
Version:
53 lines (52 loc) • 2.35 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.
*/
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
import { RecognitionException } from "./RecognitionException";
import { NotNull, Override } from "./Decorators";
import { Interval } from "./misc/Interval";
import * as Utils from "./misc/Utils";
let LexerNoViableAltException = class LexerNoViableAltException extends RecognitionException {
constructor(lexer, input, startIndex, deadEndConfigs) {
super(lexer, input);
this._startIndex = startIndex;
this._deadEndConfigs = deadEndConfigs;
}
get startIndex() {
return this._startIndex;
}
get deadEndConfigs() {
return this._deadEndConfigs;
}
get inputStream() {
return super.inputStream;
}
toString() {
let symbol = "";
if (this._startIndex >= 0 && this._startIndex < this.inputStream.size) {
symbol = this.inputStream.getText(Interval.of(this._startIndex, this._startIndex));
symbol = Utils.escapeWhitespace(symbol, false);
}
// return String.format(Locale.getDefault(), "%s('%s')", LexerNoViableAltException.class.getSimpleName(), symbol);
return `LexerNoViableAltException('${symbol}')`;
}
};
__decorate([
Override
], LexerNoViableAltException.prototype, "inputStream", null);
__decorate([
Override
], LexerNoViableAltException.prototype, "toString", null);
LexerNoViableAltException = __decorate([
__param(1, NotNull)
], LexerNoViableAltException);
export { LexerNoViableAltException };