* Get a specific cache entry by name.
(name: string)
| 223 | * Get a specific cache entry by name. |
| 224 | */ |
| 225 | getEntry(name: string): CacheEntry | undefined { |
| 226 | return this.entries.get(name); |
| 227 | } |
| 228 | |
| 229 | /** |
| 230 | * Topological sort respecting both priority and dependencies. |