antlr-ng
Version:
Next generation ANTLR Tool
10 lines (9 loc) • 460 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";
import { ThrowNoViableAlt } from "./ThrowNoViableAlt.js";
export declare class PlusBlock extends Loop {
error: ThrowNoViableAlt;
constructor(factory: IOutputModelFactory, plusRoot: IQuantifierAST, alts: CodeBlockForAlt[]);
}