simc-ast-builder
Version:
Parser and AST generator for SimulationCraft files
16 lines • 612 B
TypeScript
import { MixedIdExprContext } from "../../../../antlr4/SimCExprParser";
import { ExpressionNode } from "../../common-types";
import { ContextHandlerFn } from "../BaseHandler";
/**
* Specialized node type for mixed ID expression contexts
*/
interface MixedIdExprExpressionNode extends ExpressionNode {
nodeType: "identifier";
value: string;
}
/**
* Handler for mixed ID expression contexts
*/
declare const handleMixedIdExpr: ContextHandlerFn<MixedIdExprExpressionNode, MixedIdExprContext>;
export { handleMixedIdExpr, type MixedIdExprExpressionNode };
//# sourceMappingURL=MixedIdExprHandler.d.ts.map