antlr-ng
Version:
Next generation ANTLR Tool
17 lines (16 loc) • 386 B
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
import { ActionChunk } from "./ActionChunk.js";
class RulePropertyRef extends ActionChunk {
static {
__name(this, "RulePropertyRef");
}
label;
constructor(ctx, label) {
super(ctx);
this.label = label;
}
}
export {
RulePropertyRef
};