(location: LocationIndex[], index: number, value: any)
| 84 | } |
| 85 | |
| 86 | insert(location: LocationIndex[], index: number, value: any) { |
| 87 | this.operations.push({ |
| 88 | operation: 'Insert', |
| 89 | location, |
| 90 | params: {index, value} |
| 91 | }); |
| 92 | return this; |
| 93 | } |
| 94 | |
| 95 | append(location: LocationIndex[], value: any) { |
| 96 | this.operations.push({ |
no test coverage detected