antlr-ng
Version:
Next generation ANTLR Tool
9 lines (8 loc) • 413 B
TypeScript
import type { IQuantifierAST } from "../../tool/ast/IQuantifierAST.js";
import { IOutputModelFactory } from "../IOutputModelFactory.js";
import { CodeBlockForAlt } from "./CodeBlockForAlt.js";
import { Loop } from "./Loop.js";
export declare class StarBlock extends Loop {
readonly loopLabel: string;
constructor(factory: IOutputModelFactory, blkOrEbnfRootAST: IQuantifierAST, alts: CodeBlockForAlt[]);
}