simc-ast-builder
Version:
Parser and AST generator for SimulationCraft files
9 lines • 385 B
TypeScript
import { ParserRuleContext } from "antlr4ts";
import { ASTNode } from "../../common-types";
import { SimCGenericVisitor } from "../../SimCGenericVisitor";
/**
* Handler for the top-level parse context
*/
declare function handleParseContext(ctx: ParserRuleContext, visitor: SimCGenericVisitor): ASTNode;
export { handleParseContext };
//# sourceMappingURL=ParseContextHandler.d.ts.map