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