* Get all task paths from the filter index.
()
| 706 | * Get all task paths from the filter index. |
| 707 | */ |
| 708 | getAllTaskPaths(): Set<string> { |
| 709 | this.ensureFilterIndexes(); |
| 710 | return new Set(this.indexedTaskPaths); |
| 711 | } |
| 712 | |
| 713 | /** |
| 714 | * Get tasks for a specific date from due and scheduled indexes. |
nothing calls this directly
no test coverage detected