(str)
| 995 | return this; |
| 996 | } |
| 997 | prepend(str) { |
| 998 | this.intro = str + this.intro; |
| 999 | return this; |
| 1000 | } |
| 1001 | toString() { |
| 1002 | const body = this.sources |
| 1003 | .map((source, i) => { |
nothing calls this directly
no outgoing calls
no test coverage detected