UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

16 lines 586 B
import { IdentifierContext } from "../../../../antlr4/SimCExprParser"; import { ExpressionNode } from "../../common-types"; import { ContextHandlerFn } from "../BaseHandler"; /** * Specialized node type for identifier contexts */ interface IdentifierExpressionNode extends ExpressionNode { nodeType: "identifier"; value: string; } /** * Handler for identifier contexts */ declare const handleIdentifier: ContextHandlerFn<IdentifierExpressionNode, IdentifierContext>; export { handleIdentifier, type IdentifierExpressionNode }; //# sourceMappingURL=IdentifierHandler.d.ts.map