()
| 65 | } |
| 66 | } |
| 67 | endProcess() { |
| 68 | |
| 69 | if (this.converter.parseRuntime.then && this.converter.parseRuntime.then.onfulfilled) { |
| 70 | if (this.needEmitAll) { |
| 71 | this.converter.parseRuntime.then.onfulfilled(this.finalResult); |
| 72 | }else{ |
| 73 | this.converter.parseRuntime.then.onfulfilled([]); |
| 74 | } |
| 75 | } |
| 76 | if (this.converter.parseRuntime.subscribe && this.converter.parseRuntime.subscribe.onCompleted) { |
| 77 | this.converter.parseRuntime.subscribe.onCompleted(); |
| 78 | } |
| 79 | if (this.needPushDownstream && this.converter.parseParam.downstreamFormat === "array") { |
| 80 | pushDownstream(this.converter, "]" + EOL); |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | function processLineByLine( |
no test coverage detected