(filename: string)
| 7 | import { applyUnifiedDiff, isUnifiedDiffFormat } from "./unifiedDiffApply"; |
| 8 | |
| 9 | function canUseInstantApply(filename: string) { |
| 10 | const fileExtension = getUriFileExtension(filename); |
| 11 | return supportedLanguages[fileExtension] !== undefined; |
| 12 | } |
| 13 | |
| 14 | export async function applyCodeBlock( |
| 15 | oldFile: string, |
no test coverage detected