(file)
| 116 | const kRunOnceOptions = { __proto__: null, preserveReturnValue: true }; |
| 117 | |
| 118 | function lazyFindSourceMap(file) { |
| 119 | if (findSourceMap === undefined) { |
| 120 | ({ findSourceMap } = require('internal/source_map/source_map_cache')); |
| 121 | } |
| 122 | |
| 123 | return findSourceMap(file); |
| 124 | } |
| 125 | |
| 126 | function lazyAssertObject(harness) { |
| 127 | if (assertObj === undefined) { |
no test coverage detected
searching dependent graphs…