()
| 38 | */ |
| 39 | class ParagraphParser extends Stream { |
| 40 | constructor() { |
| 41 | super(); |
| 42 | this.blockIsLicenseBlock = false; |
| 43 | this.writable = true; |
| 44 | this.resetBlock(false); |
| 45 | } |
| 46 | |
| 47 | write(data) { |
| 48 | this.parseLine(data + ''); |
nothing calls this directly
no test coverage detected