(location: LocationIndex[], value: any)
| 93 | } |
| 94 | |
| 95 | append(location: LocationIndex[], value: any) { |
| 96 | this.operations.push({ |
| 97 | operation: 'Append', |
| 98 | location, |
| 99 | params: {value} |
| 100 | }); |
| 101 | return this; |
| 102 | } |
| 103 | |
| 104 | prepend(location: LocationIndex[], value: any) { |
| 105 | this.operations.push({ |
no test coverage detected