File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
python/ql/lib/semmle/python Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,18 @@ module API {
149
149
*/
150
150
DataFlow:: LocalSourceNode asSource ( ) { Impl:: use ( this , result ) }
151
151
152
+ /** DEPRECATED. This predicate has been renamed to `getAValueReachableFromSource()`. */
153
+ deprecated DataFlow:: Node getAUse ( ) { result = this .getAValueReachableFromSource ( ) }
154
+
155
+ /** DEPRECATED. This predicate has been renamed to `asSource()`. */
156
+ deprecated DataFlow:: LocalSourceNode getAnImmediateUse ( ) { result = this .asSource ( ) }
157
+
158
+ /** DEPRECATED. This predicate has been renamed to `asSink()`. */
159
+ deprecated DataFlow:: Node getARhs ( ) { result = this .asSink ( ) }
160
+
161
+ /** DEPRECATED. This predicate has been renamed to `getAValueReachingSink()`. */
162
+ deprecated DataFlow:: Node getAValueReachingRhs ( ) { result = this .getAValueReachingSink ( ) }
163
+
152
164
/**
153
165
* Gets a call to the function represented by this API component.
154
166
*/
You can’t perform that action at this time.
0 commit comments