(mod, id)
| 55 | } |
| 56 | |
| 57 | lookupPaths(mod, id) { |
| 58 | if (this.pathIsRelative(id)) return [mod.path || '.']; |
| 59 | return [...mod.paths, ...this.globalPaths]; |
| 60 | } |
| 61 | |
| 62 | getBuiltinModulesList(vm) { |
| 63 | if (this.builtins === undefined) return []; |
no test coverage detected