(s: string)
| 423 | // to report discarded-comment spans. `parts` alternates line, separator, |
| 424 | // line, separator, …; even indices are lines, odd indices are the following |
| 425 | // separator (or `undefined` for the last line). |
| 426 | const str = s.toString(); |
| 427 | const parts = str.split(/(\r?\n)/); |
| 428 | let stream = ''; |
| 429 | let sep = ''; |
| 430 | // Offset of the start of the current line in the original string. Advanced |
no test coverage detected