(id: string, code: string)
| 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); |
| 35 | if (new_code) { |
| 36 | code = new_code; |
| 37 | } |
| 38 | } |
| 39 | return code; |
| 40 | }, |
| 41 | async renderComponent(c, extra) { |
| 42 | for (let m of modules) { |
| 43 | const stringifiedComponent = await m?.renderComponent(c, extra); |
nothing calls this directly
no outgoing calls
no test coverage detected