(err: CSVError)
| 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); |
| 62 | } |
| 63 | if (this.converter.parseRuntime.then && this.converter.parseRuntime.then.onrejected) { |
| 64 | this.converter.parseRuntime.then.onrejected(err); |
| 65 | } |
| 66 | } |
| 67 | endProcess() { |
| 68 | |
| 69 | if (this.converter.parseRuntime.then && this.converter.parseRuntime.then.onfulfilled) { |
no outgoing calls
no test coverage detected