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 9b27a7c commit a033338Copy full SHA for a033338
python/ql/lib/semmle/python/ApiGraphs.qll
@@ -121,6 +121,9 @@ module API {
121
* obj.prop = x
122
* foo.bar(obj);
123
* ```
124
+ *
125
+ * This predicate does not include nodes transitively reaching the sink by data flow;
126
+ * use `getAValueReachingSink` for that.
127
*/
128
DataFlow::Node asSink() { Impl::rhs(this, result) }
129
@@ -146,6 +149,9 @@ module API {
146
149
* # API::moduleImport("re").getMember("escape").getReturn().asSource()
147
150
* re.escape()
148
151
152
153
+ * This predicate does not include nodes transitively reachable by data flow;
154
+ * use `getAValueReachableFromSource` for that.
155
156
DataFlow::LocalSourceNode asSource() { Impl::use(this, result) }
157
0 commit comments