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 5d09ab5 commit 77da92fCopy full SHA for 77da92f
javascript/ql/lib/semmle/javascript/ApiGraphs.qll
@@ -754,15 +754,13 @@ module API {
754
or
755
nd = any(DataFlow::FunctionNode fn).getAReturn()
756
757
- nd = any(Module m).getAnExportedValue(_)
758
- or
759
- nd = any(Module m).getABulkExportedNode()
760
761
nd = any(DataFlow::InvokeNode i).getAnArgument()
762
763
nd = any(DataFlow::InvokeNode i).getASpreadArgument()
764
765
- nd = any(EntryPoint e).getASink()
+ nd = DataFlow::valueNode(any(ExportNamedDeclaration decl).getOperand())
+ or
+ nd = DataFlow::valueNode(any(ExportDefaultDeclaration decl).getOperand())
766
} or
767
MkUse(DataFlow::Node nd) { nd instanceof DataFlow::SourceNode } or
768
/** A use of a TypeScript type. */
0 commit comments