File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
javascript/ql/lib/semmle/javascript/dataflow Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1718,5 +1718,5 @@ module DataFlow {
1718
1718
import TypeTracking
1719
1719
import internal.FunctionWrapperSteps
1720
1720
1721
- predicate localTaintStep = TaintTracking:: localTaintStep / 2 ;
1721
+ deprecated predicate localTaintStep = TaintTracking:: localTaintStep / 2 ;
1722
1722
}
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ module TaintTracking {
431
431
* Holds if `pred -> succ` is a taint propagating data flow edge through a string operation.
432
432
*/
433
433
pragma [ inline]
434
- predicate stringStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
434
+ deprecated predicate stringStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
435
435
stringConcatenationStep ( pred , succ ) or
436
436
stringManipulationStep ( pred , succ )
437
437
}
@@ -1243,7 +1243,7 @@ module TaintTracking {
1243
1243
/**
1244
1244
* Holds if taint propagates from `pred` to `succ` in one local (intra-procedural) step.
1245
1245
*/
1246
- predicate localTaintStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
1246
+ deprecated predicate localTaintStep ( DataFlow:: Node pred , DataFlow:: Node succ ) {
1247
1247
DataFlow:: localFlowStep ( pred , succ ) or
1248
1248
sharedTaintStep ( pred , succ )
1249
1249
}
You can’t perform that action at this time.
0 commit comments