(fileName)
| 764 | } |
| 765 | |
| 766 | async processLogFileInTest(fileName) { |
| 767 | // Hack file name to avoid dealing with platform specifics. |
| 768 | this.lastLogFileName_ = 'v8.log'; |
| 769 | const contents = d8.file.read(fileName); |
| 770 | await this.processLogChunk(contents); |
| 771 | } |
| 772 | |
| 773 | processSharedLibrary(name, startAddr, endAddr, aslrSlide) { |
| 774 | const entry = this.profile_.addLibrary(name, startAddr, endAddr); |
nothing calls this directly
no test coverage detected