We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03bc334 commit f5db4f0Copy full SHA for f5db4f0
javascript/ql/lib/semmle/javascript/internal/NameResolution.qll
@@ -81,6 +81,12 @@ module NameResolution {
81
node2 = imprt.getImportedPathExpr()
82
)
83
or
84
+ // Same as above, but for re-export declarations
85
+ exists(ReExportDeclaration exprt |
86
+ node1 = exprt.getReExportedModule() and
87
+ node2 = exprt.getImportedPath()
88
+ )
89
+ or
90
exists(ImportNamespaceSpecifier spec |
91
node1 = spec.getImportDeclaration().getImportedPathExpr() and
92
node2 = spec.getLocal()
0 commit comments