Python: filter self steps from use-use flow

Factor out use-use flow in order to do this.
Also improve names and comments.

I also wanted to change the types in `difinitionFlowStep`, but
that broke the module instantiation.
This commit is contained in:
Rasmus Lerchedahl Petersen
2023-10-31 14:44:10 +01:00
parent 613831b2e1
commit 58bf70d61b
10 changed files with 56 additions and 89 deletions

View File

@@ -33,5 +33,5 @@ query predicate jumpStep(DataFlow::Node nodeFrom, DataFlow::Node nodeTo) {
query predicate essaFlowStep(DataFlow::Node nodeFrom, DataFlow::Node nodeTo) {
os_import(nodeFrom) and
DataFlowPrivate::EssaFlow::essaFlowStep(nodeFrom, nodeTo)
DataFlowPrivate::LocalFlow::localFlowStep(nodeFrom, nodeTo)
}