(bundleId: string, moduleId: string)
| 105 | } |
| 106 | |
| 107 | hasNodePart(bundleId: string, moduleId: string): boolean { |
| 108 | if (!(moduleId in this.nodeMetas)) { |
| 109 | return false; |
| 110 | } |
| 111 | if (!(bundleId in this.nodeMetas[moduleId].meta.moduleParts)) { |
| 112 | return false; |
| 113 | } |
| 114 | if (!(this.nodeMetas[moduleId].meta.moduleParts[bundleId] in this.nodeParts)) { |
| 115 | return false; |
| 116 | } |
| 117 | return true; |
| 118 | } |
| 119 | |
| 120 | getNodeParts(): ModuleMapper["nodeParts"] { |
| 121 | return this.nodeParts; |
nothing calls this directly
no outgoing calls
no test coverage detected