(location: LocationIndex[])
| 156 | } |
| 157 | |
| 158 | reverse(location: LocationIndex[]) { |
| 159 | this.operations.push({ |
| 160 | operation: 'Reverse', |
| 161 | location, |
| 162 | params: {} |
| 163 | }); |
| 164 | return this; |
| 165 | } |
| 166 | |
| 167 | remove(location: LocationIndex[], value: any) { |
| 168 | this.operations.push({ |
no test coverage detected