simc-ast-builder
Version:
Parser and AST generator for SimulationCraft files
16 lines • 424 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.handleTime = void 0;
/**
* Handler for time access contexts
* This represents the current time in the simulation
*/
const handleTime = ({ parts }) => {
return {
expressionType: "numeric",
kind: "expression",
nodeType: "time",
};
};
exports.handleTime = handleTime;
//# sourceMappingURL=TimeHandler.js.map