Python/Ruby/Swift: Rename references.

This commit is contained in:
Anders Schack-Mulligen
2023-03-23 13:01:38 +01:00
parent 72415c7c2c
commit d0b7ffda70
5 changed files with 8 additions and 8 deletions

View File

@@ -21,12 +21,12 @@ module TaintReachConfig implements DataFlow::ConfigSig {
predicate isSink(DataFlow::Node node) { any() }
}
module TaintReachFlow = TaintTracking::Make<TaintReachConfig>;
module TaintReachFlow = TaintTracking::Global<TaintReachConfig>;
/**
* Gets the total number of dataflow nodes that taint reaches (from any source).
*/
int taintedNodesCount() { result = count(DataFlow::Node n | TaintReachFlow::hasFlowTo(n)) }
int taintedNodesCount() { result = count(DataFlow::Node n | TaintReachFlow::flowTo(n)) }
/**
* Gets the proportion of dataflow nodes that taint reaches (from any source),