(content)
| 299 | this.sourcemapLocations.add(char); |
| 300 | } |
| 301 | append(content) { |
| 302 | if (typeof content !== 'string') throw new TypeError('outro content must be a string'); |
| 303 | this.outro += content; |
| 304 | return this; |
| 305 | } |
| 306 | appendLeft(index, content) { |
| 307 | if (typeof content !== 'string') throw new TypeError('inserted content must be a string'); |
| 308 | this._split(index); |
nothing calls this directly
no outgoing calls
no test coverage detected