(groupKey: string | null)
| 602 | } |
| 603 | |
| 604 | private getSortScopeKey(groupKey: string | null): string { |
| 605 | return groupKey ?? this.UNGROUPED_SORT_SCOPE_KEY; |
| 606 | } |
| 607 | |
| 608 | private getVisibleSortScopePaths(groupKey: string | null): string[] | undefined { |
| 609 | return this.sortScopeTaskPaths.get(this.getSortScopeKey(groupKey)); |
no outgoing calls
no test coverage detected