Python: Fix queries and tests

This commit is contained in:
Taus
2025-11-26 13:59:23 +00:00
parent b9a5b3b628
commit cd1619b43e
4 changed files with 8 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ predicate same_value(Expr left, Expr right) {
}
predicate maybe_defined_in_outer_scope(Name n) {
exists(SsaVariable v | v.getAUse().getNode() = n | v.maybeUndefined())
exists(SsaVariableWithPointsTo v | v.getAUse().getNode() = n | v.maybeUndefined())
}
/*