(filePath: string)
| 211 | } |
| 212 | |
| 213 | export function getChangedFunctions(filePath: string): string[] | undefined { |
| 214 | return changedFiles.get(filePath); |
| 215 | } |
| 216 | |
| 217 | export function setChangedFunctions(filePath: string, functions: string[]): void { |
| 218 | changedFiles.set(filePath, functions); |