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

Method constructor

deps/v8/tools/dumpcpp.mjs:14–25  ·  view source on GitHub ↗
(cppEntriesProvider, timedRange, pairwiseTimedRange)

Source from the content-addressed store, hash-verified

12
13export 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

Callers

nothing calls this directly

Calls 1

setDispatchTableMethod · 0.80

Tested by

no test coverage detected