JavaScript: Remove deprecated flow tracking predicates.

This commit is contained in:
Max Schaefer
2019-01-08 13:17:22 +00:00
parent 8a93c6aa65
commit db8e436046

View File

@@ -197,31 +197,6 @@ abstract class Configuration extends string {
predicate hasFlowPath(SourcePathNode source, SinkPathNode sink) {
flowsTo(source, _, sink, _, this)
}
/**
* DEPRECATED: Use `hasFlowPath` instead.
*
* Holds if data may flow from `source` to `sink` for this configuration.
*/
deprecated predicate hasPathFlow(SourcePathNode source, SinkPathNode sink) {
hasFlowPath(source, sink)
}
/**
* DEPRECATED: Use `hasFlow` instead.
*
* Holds if `source` flows to `sink`.
*/
deprecated predicate flowsTo(DataFlow::Node source, DataFlow::Node sink) { hasFlow(source, sink) }
/**
* DEPRECATED: Use `hasFlow` instead.
*
* Holds if `source` flows to `sink`.
*/
deprecated predicate flowsFrom(DataFlow::Node sink, DataFlow::Node source) {
hasFlow(source, sink)
}
}
/**