antlr-ng
Version:
Next generation ANTLR Tool
12 lines (11 loc) • 450 B
TypeScript
import { ContextGetterDecl } from "./ContextGetterDecl.js";
import { IOutputModelFactory } from "../../IOutputModelFactory.js";
/**
* {@code public List<XContext> X() { }
* public XContext X(int i) { }}
*/
export declare class ContextRuleListGetterDecl extends ContextGetterDecl {
ctxName: string;
constructor(factory: IOutputModelFactory, name: string, ctxName: string, signature?: boolean);
getSignatureDecl(): ContextGetterDecl;
}