MCPcopy Index your code
hub / github.com/callumalpass/tasknotes / getBlockedTaskPaths

Method getBlockedTaskPaths

src/utils/TaskManager.ts:1034–1043  ·  view source on GitHub ↗
(taskPath: string)

Source from the content-addressed store, hash-verified

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) {

Calls 1

warnMethod · 0.80

Tested by

no test coverage detected