(node *Node)
| 2857 | } |
| 2858 | |
| 2859 | func IsModuleExportsQualifiedName(node *Node) bool { |
| 2860 | return IsQualifiedName(node) && IsModuleIdentifier(node.AsQualifiedName().Left) && node.AsQualifiedName().Right.Text() == "exports" |
| 2861 | } |
| 2862 | |
| 2863 | func IsCheckJSEnabledForFile(sourceFile *SourceFile, compilerOptions *core.CompilerOptions) bool { |
| 2864 | if sourceFile.CheckJsDirective != nil { |
nothing calls this directly
no test coverage detected