(entries: Iterable<[string | null, string[]]>)
| 614 | } |
| 615 | |
| 616 | private setSortScopePaths(entries: Iterable<[string | null, string[]]>): void { |
| 617 | this.sortScopeTaskPaths.clear(); |
| 618 | for (const [groupKey, paths] of entries) { |
| 619 | this.sortScopeTaskPaths.set(this.getSortScopeKey(groupKey), [...paths]); |
| 620 | } |
| 621 | } |
| 622 | |
| 623 | private setSortScopeCandidatePaths(entries: Iterable<[string | null, string[]]>): void { |
| 624 | this.sortScopeCandidateTaskPaths.clear(); |
no test coverage detected