(code: string)
| 489 | }; |
| 490 | |
| 491 | const getExportNames = (code: string): string[] => { |
| 492 | let [, exportSpecifiers] = esModuleLexer(code); |
| 493 | return exportSpecifiers.map(({ n: name }) => name); |
| 494 | }; |
| 495 | |
| 496 | const getRouteManifestModuleExports = async ( |
| 497 | viteChildCompiler: Vite.ViteDevServer | null, |
no outgoing calls
no test coverage detected