(v: number)
| 1073 | }); |
| 1074 | }; |
| 1075 | const setNumberValue = (v: number) => { |
| 1076 | doUpdate((group) => { |
| 1077 | const cond = group.args[operandIndex] as ConditionExpr; |
| 1078 | (cond.args as unknown[])[1] = v; |
| 1079 | }); |
| 1080 | }; |
| 1081 | const setArrayValue = (v: string[]) => { |
| 1082 | doUpdate((group) => { |
| 1083 | const cond = group.args[operandIndex] as ConditionExpr; |
no test coverage detected