(location: LocationIndex[], value: any)
| 129 | } |
| 130 | |
| 131 | mul(location: LocationIndex[], value: any) { |
| 132 | this.operations.push({ |
| 133 | operation: 'Mul', |
| 134 | location, |
| 135 | params: {value} |
| 136 | }); |
| 137 | return this; |
| 138 | } |
| 139 | |
| 140 | div(location: LocationIndex[], value: any) { |
| 141 | this.operations.push({ |
no test coverage detected