()
| 29 | |
| 30 | Dependable.implement(this, { |
| 31 | get dependencyRoots() { |
| 32 | const result = new Array<IConstruct>(); |
| 33 | for (const d of self._deps) { |
| 34 | result.push(...Dependable.of(d).dependencyRoots); |
| 35 | } |
| 36 | return result; |
| 37 | }, |
| 38 | }); |
| 39 | |
| 40 | this.add(...deps); |