(location: LocationIndex[], value: any)
| 66 | } |
| 67 | |
| 68 | extend(location: LocationIndex[], value: any) { |
| 69 | this.operations.push({ |
| 70 | operation: 'Extend', |
| 71 | location, |
| 72 | params: {value} |
| 73 | }); |
| 74 | return this; |
| 75 | } |
| 76 | |
| 77 | delete(location: LocationIndex[]) { |
| 78 | this.operations.push({ |
no test coverage detected