antlr-ng
Version:
Next generation ANTLR Tool
17 lines (16 loc) • 343 B
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
class OutputModelObject {
static {
__name(this, "OutputModelObject");
}
factory;
ast;
constructor(factory, ast) {
this.factory = factory;
this.ast = ast;
}
}
export {
OutputModelObject
};