(frameworkId: string)
| 105 | const addOnFrameworkIds = new WeakMap<AddOn, string>() |
| 106 | |
| 107 | function getRendererChunks(frameworkId: string) { |
| 108 | const chunks = loadedRendererChunks.get(frameworkId) |
| 109 | if (chunks) { |
| 110 | return chunks |
| 111 | } |
| 112 | |
| 113 | const nextChunks: Array<ManifestTemplateModule> = [] |
| 114 | loadedRendererChunks.set(frameworkId, nextChunks) |
| 115 | return nextChunks |
| 116 | } |
| 117 | |
| 118 | function registerRendererChunk( |
| 119 | frameworkId: string, |
no test coverage detected