(line)
| 17146 | return this._insertBlock(line) |
| 17147 | } |
| 17148 | appendUniqueLine(line) { |
| 17149 | if (!this.hasLine(line)) return this.appendLine(line) |
| 17150 | return this.findLine(line) |
| 17151 | } |
| 17152 | appendLineAndSubparticles(line, subparticles) { |
| 17153 | return this._insertBlock(this._makeBlock(line, subparticles)) |
| 17154 | } |
nothing calls this directly
no test coverage detected