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 e2858b7 commit 777d344Copy full SHA for 777d344
javascript/ql/lib/semmle/javascript/ApiGraphs.qll
@@ -207,8 +207,10 @@ module API {
207
DataFlow::Node getASink() { Impl::rhs(this, result) }
208
209
/**
210
- * Gets a data-flow node that may interprocedurally flow to the right-hand side of a definition
211
- * of the API component represented by this node.
+ * Get a data-flow node that transitively flows to an external library (or in general, any external codebase).
+ *
212
+ * This is similar to `getASink()` but additionally includes nodes that transitively reach a sink by data flow.
213
+ * See `getASink()` for examples.
214
*/
215
DataFlow::Node getAValueReachingSink() { result = Impl::trackDefNode(this.getASink()) }
216
0 commit comments