(taskPath: string)
| 1032 | } |
| 1033 | |
| 1034 | getBlockedTaskPaths(taskPath: string): string[] { |
| 1035 | if (!this._dependencyCache) { |
| 1036 | tasknotesLogger.warn("DependencyCache not set in TaskManager", { |
| 1037 | category: "stale-data", |
| 1038 | operation: "dependencycache-not-set-taskmanager", |
| 1039 | }); |
| 1040 | return []; |
| 1041 | } |
| 1042 | return this._dependencyCache.getBlockedTaskPaths(taskPath); |
| 1043 | } |
| 1044 | |
| 1045 | isTaskBlocked(taskPath: string): boolean { |
| 1046 | if (!this._dependencyCache) { |
no test coverage detected