(sid: string)
| 72 | const startContextCache = new Map<string, string>(); |
| 73 | |
| 74 | function stashFor(sid: string): Set<string> { |
| 75 | let s = stashedFiles.get(sid); |
| 76 | if (!s) { s = new Set<string>(); stashedFiles.set(sid, s); } |
| 77 | return s; |
| 78 | } |
| 79 | |
| 80 | function subtaskSetFor(sid: string): Set<string> { |
| 81 | let s = seenSubtaskIds.get(sid); |
no test coverage detected