()
| 882 | } |
| 883 | |
| 884 | #loadWorkspaces () { |
| 885 | if (!this.#workspaces) { |
| 886 | return |
| 887 | } |
| 888 | |
| 889 | for (const [name, path] of this.#workspaces.entries()) { |
| 890 | new Edge({ from: this, name, spec: `file:${path}`, type: 'workspace' }) |
| 891 | } |
| 892 | } |
| 893 | |
| 894 | [_loadDeps] () { |
| 895 | // Caveat! Order is relevant! |
no outgoing calls
no test coverage detected