(stream)
| 112 | |
| 113 | class State { |
| 114 | constructor(stream) { |
| 115 | this.snapshot = createJSHeapSnapshot(stream); |
| 116 | this.embedderGraph = buildEmbedderGraph(); |
| 117 | } |
| 118 | |
| 119 | // Validate the v8 heap snapshot |
| 120 | validateSnapshot(rootName, expected, { loose = false } = {}) { |
nothing calls this directly
no test coverage detected