antlr-ng
Version:
Next generation ANTLR Tool
18 lines (17 loc) • 407 B
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
import { Decl } from "./Decl.js";
class RuleContextDecl extends Decl {
static {
__name(this, "RuleContextDecl");
}
ctxName;
isImplicit;
constructor(factory, name, ctxName) {
super(factory, name);
this.ctxName = ctxName;
}
}
export {
RuleContextDecl
};