(filePath: string, oldPath?: string)
| 1835 | } |
| 1836 | |
| 1837 | function getFilePatchPathspecs(filePath: string, oldPath?: string): string[] { |
| 1838 | if (oldPath && oldPath !== filePath) { |
| 1839 | return [oldPath, filePath] |
| 1840 | } |
| 1841 | return [filePath] |
| 1842 | } |
| 1843 | |
| 1844 | function createEmptyFilePatchResponse(): GetFilePatchResponse { |
| 1845 | return { |
no outgoing calls
no test coverage detected