simc-ast-builder
Version:
Parser and AST generator for SimulationCraft files
17 lines • 591 B
TypeScript
import { ExpressionNode } from "../../../common-types";
import { FieldDefinition } from "../../../utils/fieldMaps";
import { AccessHandlerFn } from "../../BaseHandler";
/**
* Specialized node type for priest access
*/
interface PriestExpressionNode extends ExpressionNode {
field: FieldDefinition;
nodeType: "priest";
}
/**
* Handler for priest access contexts
* This handles access to priest-specific properties
*/
declare const handlePriest: AccessHandlerFn<PriestExpressionNode>;
export { handlePriest, type PriestExpressionNode };
//# sourceMappingURL=PriestHandler.d.ts.map