(path: string)
| 21 | } |
| 22 | }, |
| 23 | resolveComponentPath(path: string): string { |
| 24 | for (let m of modules) { |
| 25 | const new_path = m?.resolveComponentPath(path); |
| 26 | if (new_path) { |
| 27 | return new_path; |
| 28 | } |
| 29 | } |
| 30 | return ""; |
| 31 | }, |
| 32 | async editEntryFile(id: string, code: string) { |
| 33 | for (let m of modules) { |
| 34 | const new_code = await m?.editEntryFile(id, code); |
nothing calls this directly
no outgoing calls
no test coverage detected