(lines: any[])
| 51 | }) |
| 52 | } |
| 53 | appendFinalResult(lines: any[]) { |
| 54 | if (this.needEmitAll) { |
| 55 | this.finalResult = this.finalResult.concat(lines); |
| 56 | } |
| 57 | this.converter.parseRuntime.parsedLineNumber += lines.length; |
| 58 | } |
| 59 | processError(err: CSVError) { |
| 60 | if (this.converter.parseRuntime.subscribe && this.converter.parseRuntime.subscribe.onError) { |
| 61 | this.converter.parseRuntime.subscribe.onError(err); |
no outgoing calls
no test coverage detected