(entries: Iterable<[string | null, string[]]>)
| 621 | } |
| 622 | |
| 623 | private setSortScopeCandidatePaths(entries: Iterable<[string | null, string[]]>): void { |
| 624 | this.sortScopeCandidateTaskPaths.clear(); |
| 625 | for (const [groupKey, paths] of entries) { |
| 626 | this.sortScopeCandidateTaskPaths.set(this.getSortScopeKey(groupKey), [...paths]); |
| 627 | } |
| 628 | } |
| 629 | |
| 630 | private getVirtualItemTask(item: TaskListVirtualItem): TaskInfo | null { |
| 631 | if ("type" in item) { |
no test coverage detected