(e)
| 5673 | e.remove(); |
| 5674 | } |
| 5675 | removeFormulas(e) { |
| 5676 | const t = {}; |
| 5677 | for (const [n, i] of O(this.timeUnits)) { |
| 5678 | const r = kc(i) ? i.as : `${i.field}_end`; |
| 5679 | e.has(r) || (t[n] = i); |
| 5680 | } |
| 5681 | this.timeUnits = t; |
| 5682 | } |
| 5683 | producedFields() { |
| 5684 | return new Set( |
| 5685 | F(this.timeUnits).map((e) => (kc(e) ? e.as : Sc(e.field))), |