UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

9 lines 411 B
import { ActionLineContext } from "../../../../antlr4/SimCExprParser"; import { ActionLineNode } from "../../common-types"; import { SimCGenericVisitor } from "../../SimCGenericVisitor"; /** * Handler for action line contexts */ declare function handleActionLine(ctx: ActionLineContext, visitor: SimCGenericVisitor): ActionLineNode; export { handleActionLine }; //# sourceMappingURL=ActionLineHandler.d.ts.map