(source: StringLiteral)
| 101 | } |
| 102 | |
| 103 | async function rewriteImportSource(source: StringLiteral) { |
| 104 | const specifier = getStringLiteralValue(source); |
| 105 | output.replaceLeft(source.start, source.end, annotatePath(await resolveImport(specifier))); |
| 106 | } |
| 107 | |
| 108 | for (const {name, node} of findFiles(body, path, input)) { |
| 109 | const source = node.arguments[0]; |
no test coverage detected