(filename: string)
| 234 | } |
| 235 | |
| 236 | supportsFile(filename: string): boolean { |
| 237 | if (this.extRe?.test(filename)) return true; |
| 238 | |
| 239 | return this.filenameMatchers.some((matcher) => { |
| 240 | matcher.lastIndex = 0; |
| 241 | return matcher.test(filename); |
| 242 | }); |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Get the CodeMirror language extension |
no outgoing calls
no test coverage detected