(state)
| 1345 | } |
| 1346 | |
| 1347 | function hasLanguageSupport(state) { |
| 1348 | try { |
| 1349 | return !!state?.facet?.(languageFacet); |
| 1350 | } catch (_) { |
| 1351 | return false; |
| 1352 | } |
| 1353 | } |
| 1354 | |
| 1355 | function shouldApplyLanguage(file, state, languageSignature) { |
| 1356 | const langExtFn = file?.currentLanguageExtension; |
no outgoing calls
no test coverage detected