* Get all time estimates from the filter index.
()
| 854 | * Get all time estimates from the filter index. |
| 855 | */ |
| 856 | getAllTimeEstimates(): Map<string, number> { |
| 857 | const estimates = new Map<string, number>(); |
| 858 | this.ensureFilterIndexes(); |
| 859 | |
| 860 | for (const [path, entry] of this.taskFilterEntries) { |
| 861 | if (entry.timeEstimate !== undefined) { |
| 862 | estimates.set(path, entry.timeEstimate); |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | return estimates; |
| 867 | } |
| 868 | |
| 869 | /** |
| 870 | * Get notes for a specific date (just-in-time) |
no test coverage detected