(file, chunk)
| 175 | } |
| 176 | |
| 177 | startProcessing(file, chunk) { |
| 178 | const isV8TraceFile = chunk.includes('v8-zone-trace'); |
| 179 | const processingState = |
| 180 | isV8TraceFile ? this.startProcessingAsV8TraceFile(file) |
| 181 | : this.startProcessingAsChromeTraceFile(file); |
| 182 | |
| 183 | processingState.processChunk(chunk); |
| 184 | return processingState; |
| 185 | } |
| 186 | |
| 187 | startProcessingAsChromeTraceFile(file) { |
| 188 | console.log(`Processing log as chrome trace file.`); |
no test coverage detected