(kinds: string[])
| 151 | |
| 152 | constructor() { |
| 153 | this.workspaceRootCache = new BazelCommandCache(async () => { |
| 154 | return this.runCommandAndGetTrimmedStdOut('info workspace'); |
| 155 | }); |
| 156 | |
| 157 | this.executionRootCache = new BazelCommandCache(async () => { |
| 158 | return this.runCommandAndGetTrimmedStdOut('info execution_root'); |
| 159 | }); |
| 160 | } |
| 161 | |
| 162 | async resolveLabel(str: string): Promise<BazelLabel> { |
| 163 | const unresolvedLabel = BazelLabel.fromString(str); |
nothing calls this directly
no test coverage detected