(e: Expression | null)
| 219 | : ce.function(e.operator, newOps); |
| 220 | const step = simplifyTrig(node as any); |
| 221 | return (step?.value as Expression) ?? node; |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * One recorded integration step, captured by the driver only when a `records` |
| 226 | * accumulator is threaded through `int()` (i.e. under `explain('Integrate')`). |
| 227 | * |
nothing calls this directly
no test coverage detected