(location: LocationIndex[], value: any)
| 138 | } |
| 139 | |
| 140 | div(location: LocationIndex[], value: any) { |
| 141 | this.operations.push({ |
| 142 | operation: 'Div', |
| 143 | location, |
| 144 | params: {value} |
| 145 | }); |
| 146 | return this; |
| 147 | } |
| 148 | |
| 149 | clear(location: LocationIndex[]) { |
| 150 | this.operations.push({ |
no test coverage detected