()
| 89 | } |
| 90 | |
| 91 | toBuildableString(): string { |
| 92 | const repoPrefix = this.apparentRepo ? `@${this.apparentRepo}` : ''; |
| 93 | if (this.name) { |
| 94 | return `${repoPrefix}${this.target}:${this.name}`; |
| 95 | } else { |
| 96 | return repoPrefix + this.target; |
| 97 | } |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | class BazelCommandCache { |