(url: string, content: string | null = null)
| 39 | |
| 40 | // The content is `null` when the content is expected to be loaded using the URL |
| 41 | addSource(url: string, content: string | null = null): this { |
| 42 | if (!this.sourcesContent.has(url)) { |
| 43 | this.sourcesContent.set(url, content); |
| 44 | } |
| 45 | return this; |
| 46 | } |
| 47 | |
| 48 | addLine(): this { |
| 49 | this.lines.push([]); |
no test coverage detected