(location: LocationIndex[], value: any)
| 48 | private operations: PatchOperation[] = []; |
| 49 | |
| 50 | assign(location: LocationIndex[], value: any) { |
| 51 | this.operations.push({ |
| 52 | operation: 'Assign', |
| 53 | location, |
| 54 | params: {value} |
| 55 | }); |
| 56 | return this; |
| 57 | } |
| 58 | |
| 59 | merge(location: LocationIndex[], value: any) { |
| 60 | this.operations.push({ |
no test coverage detected