(dep: string, metadata?: SSRImportMetadata)
| 331 | const callstack = [..._callstack, moduleId] |
| 332 | |
| 333 | const request = async (dep: string, metadata?: SSRImportMetadata) => { |
| 334 | const importer = (class="st">'file' in fetchResult && fetchResult.file) || moduleId |
| 335 | const depMod = await this.cachedModule(dep, importer) |
| 336 | depMod.importers.add(moduleId) |
| 337 | mod.imports.add(depMod.id) |
| 338 | |
| 339 | return this.cachedRequest(dep, depMod, callstack, metadata) |
| 340 | } |
| 341 | |
| 342 | const dynamicRequest = async (dep: string) => { |
| 343 | class="cm">// it's possible to provide an object with toString() method inside import() |
nothing calls this directly
no test coverage detected