(moduleId: string, value: { isEntry?: boolean; isExternal?: boolean })
| 99 | } |
| 100 | |
| 101 | setNodeMeta(moduleId: string, value: { isEntry?: boolean; isExternal?: boolean }): void { |
| 102 | this.getModuleUid(moduleId); |
| 103 | this.nodeMetas[moduleId].meta.isEntry = value.isEntry; |
| 104 | this.nodeMetas[moduleId].meta.isExternal = value.isExternal; |
| 105 | } |
| 106 | |
| 107 | hasNodePart(bundleId: string, moduleId: string): boolean { |
| 108 | if (!(moduleId in this.nodeMetas)) { |
no test coverage detected