(file)
| 790 | } |
| 791 | |
| 792 | function getFileLspUri(file) { |
| 793 | if (!file) return null; |
| 794 | if (file.uri) return file.uri; |
| 795 | return `${UNTITLED_URI_PREFIX}${file.id}`; |
| 796 | } |
| 797 | |
| 798 | function getFileLanguageId(file) { |
| 799 | if (!file) return "plaintext"; |
no outgoing calls
no test coverage detected