antlr4ng
Version:
Alternative JavaScript/TypeScript runtime for ANTLR4
17 lines (15 loc) • 390 B
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// src/misc/ParseCancellationException.ts
var ParseCancellationException = class extends Error {
static {
__name(this, "ParseCancellationException");
}
constructor(e) {
super();
this.cause = e;
}
};
export {
ParseCancellationException
};