(fileName)
| 756 | } |
| 757 | |
| 758 | async processLogFile(fileName) { |
| 759 | this.lastLogFileName_ = fileName; |
| 760 | let line; |
| 761 | while (line = readline()) { |
| 762 | await this.processLogLine(line); |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | async processLogFileInTest(fileName) { |
| 767 | // Hack file name to avoid dealing with platform specifics. |
nothing calls this directly
no test coverage detected