(file)
| 16328 | } |
| 16329 | ts.isSourceFileJS = isSourceFileJS; |
| 16330 | function isSourceFileNotJS(file) { |
| 16331 | return !isInJSFile(file); |
| 16332 | } |
| 16333 | ts.isSourceFileNotJS = isSourceFileNotJS; |
| 16334 | function isInJSFile(node) { |
| 16335 | return !!node && !!(node.flags & 262144 /* NodeFlags.JavaScriptFile */); |
nothing calls this directly
no test coverage detected
searching dependent graphs…