MCPcopy Index your code
hub / github.com/nodejs/node / processLogFile

Method processLogFile

deps/v8/tools/parse-processor.mjs:827–835  ·  view source on GitHub ↗
(fileName)

Source from the content-addressed store, hash-verified

825 }
826
827 async processLogFile(fileName) {
828 this.collectEntries = true
829 this.lastLogFileName_ = fileName;
830 let line;
831 while (line = readline()) {
832 await this.processLogLine(line);
833 }
834 this.postProcess();
835 }
836
837 postProcess() {
838 this.scripts = Array.from(this.idToScript.values())

Callers

nothing calls this directly

Calls 3

postProcessMethod · 0.95
readlineFunction · 0.85
processLogLineMethod · 0.80

Tested by

no test coverage detected