()
| 9 | const { SourceTextModule, createContext, Module } = require('vm'); |
| 10 | |
| 11 | async function createEmptyLinkedModule() { |
| 12 | const m = new SourceTextModule(''); |
| 13 | await m.link(common.mustNotCall()); |
| 14 | return m; |
| 15 | } |
| 16 | |
| 17 | async function checkArgType() { |
| 18 | assert.throws(() => { |
no test coverage detected
searching dependent graphs…