(cppEntriesProvider, timedRange, pairwiseTimedRange)
| 12 | |
| 13 | export class CppProcessor extends LogReader { |
| 14 | constructor(cppEntriesProvider, timedRange, pairwiseTimedRange) { |
| 15 | super(timedRange, pairwiseTimedRange); |
| 16 | this.setDispatchTable({ |
| 17 | __proto__: null, |
| 18 | 'shared-library': { |
| 19 | parsers: [parseString, parseInt, parseInt, parseInt], |
| 20 | processor: this.processSharedLibrary } |
| 21 | }); |
| 22 | this.cppEntriesProvider_ = cppEntriesProvider; |
| 23 | this.codeMap_ = new CodeMap(); |
| 24 | this.lastLogFileName_ = null; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * @override |
nothing calls this directly
no test coverage detected