(uri: vs.Uri, command: string, args: string[])
| 138 | } |
| 139 | |
| 140 | protected async runProjectTask(uri: vs.Uri, command: string, args: string[]) { |
| 141 | const projectRoot = uri ? locateBestProjectRoot(fsPath(uri)) : undefined; |
| 142 | const projectRootUri = projectRoot ? vs.Uri.file(projectRoot) : undefined; |
| 143 | return this.runTask(projectRootUri, command, args); |
| 144 | } |
| 145 | |
| 146 | protected async runTask(uri: vs.Uri | undefined, command: string, args: string[]) { |
| 147 | let projectFolder = uri; |
nothing calls this directly
no test coverage detected