File tree Expand file tree Collapse file tree
javascript/ql/lib/semmle/javascript/dataflow Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1718,5 +1718,5 @@ module DataFlow {
17181718 import TypeTracking
17191719 import internal.FunctionWrapperSteps
17201720
1721- predicate localTaintStep = TaintTracking:: localTaintStep / 2 ;
1721+ deprecated predicate localTaintStep = TaintTracking:: localTaintStep / 2 ;
17221722}
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ module TaintTracking {
431431 * Holds if `pred -> succ` is a taint propagating data flow edge through a string operation.
432432 */
433433 pragma [ inline]
434- predicate stringStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
434+ deprecated predicate stringStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
435435 stringConcatenationStep ( pred , succ ) or
436436 stringManipulationStep ( pred , succ )
437437 }
@@ -1243,7 +1243,7 @@ module TaintTracking {
12431243 /**
12441244 * Holds if taint propagates from `pred` to `succ` in one local (intra-procedural) step.
12451245 */
1246- predicate localTaintStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
1246+ deprecated predicate localTaintStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
12471247 DataFlow:: localFlowStep ( pred , succ ) or
12481248 sharedTaintStep ( pred , succ )
12491249 }
You can’t perform that action at this time.
0 commit comments