()
| 220 | }; |
| 221 | |
| 222 | async function importEmbeddedRuntime(): Promise<EmbeddedRuntimeModule> { |
| 223 | const builtPath = path.join(moduleDir, "embedded.js"); |
| 224 | if (existsSync(builtPath)) { |
| 225 | return await import(pathToFileURL(builtPath).href) as EmbeddedRuntimeModule; |
| 226 | } |
| 227 | const sourceSpecifier = "./embedded"; |
| 228 | return await import(sourceSpecifier) as EmbeddedRuntimeModule; |
| 229 | } |
| 230 | |
| 231 | async function runPlanReview(input: { |
| 232 | client: any; |
no outgoing calls
no test coverage detected