(location: LocationIndex[], value: any)
| 111 | } |
| 112 | |
| 113 | add(location: LocationIndex[], value: any) { |
| 114 | this.operations.push({ |
| 115 | operation: 'Add', |
| 116 | location, |
| 117 | params: {value} |
| 118 | }); |
| 119 | return this; |
| 120 | } |
| 121 | |
| 122 | sub(location: LocationIndex[], value: any) { |
| 123 | this.operations.push({ |
no test coverage detected