()
| 1043 | const isBooleanValue = isBooleanFactor(factor); |
| 1044 | |
| 1045 | const getBooleanValue = (): boolean => |
| 1046 | typeof expr.args[1] === "boolean" ? (expr.args[1] as boolean) : true; |
| 1047 | const setBooleanValue = (v: boolean) => { |
| 1048 | doUpdate((group) => { |
| 1049 | const cond = group.args[operandIndex] as ConditionExpr; |