(taskPath: string)
| 1043 | } |
| 1044 | |
| 1045 | isTaskBlocked(taskPath: string): boolean { |
| 1046 | if (!this._dependencyCache) { |
| 1047 | return false; |
| 1048 | } |
| 1049 | return this._dependencyCache.isTaskBlocked(taskPath); |
| 1050 | } |
| 1051 | |
| 1052 | getTasksReferencingProject(projectPath: string): string[] { |
| 1053 | if (!this._dependencyCache) { |
no outgoing calls
no test coverage detected