simc-ast-builder
Version:
Parser and AST generator for SimulationCraft files
16 lines • 502 B
TypeScript
import { ExpressionNode } from "../../common-types";
import { FieldDefinition } from "../../utils/fieldMaps";
import { AccessHandlerFn } from "../BaseHandler";
/**
* Specialized node type for GCD access
*/
interface GcdExpressionNode extends ExpressionNode {
field: FieldDefinition;
nodeType: "gcd";
}
/**
* Handler for GCD access contexts
*/
declare const handleGcd: AccessHandlerFn<GcdExpressionNode>;
export { handleGcd, type GcdExpressionNode };
//# sourceMappingURL=GcdHandler.d.ts.map