(fileName)
| 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()) |
nothing calls this directly
no test coverage detected