* @private
(start, count)
| 1025 | * @private |
| 1026 | */ |
| 1027 | _removeElements(start, count) { |
| 1028 | const meta = this._cachedMeta; |
| 1029 | if (this._parsing) { |
| 1030 | const removed = meta._parsed.splice(start, count); |
| 1031 | if (meta._stacked) { |
| 1032 | clearStacks(meta, removed); |
| 1033 | } |
| 1034 | } |
| 1035 | meta.data.splice(start, count); |
| 1036 | } |
| 1037 | |
| 1038 | /** |
| 1039 | * @private |
no test coverage detected