Skip to content

Commit

Permalink
Python: use imprecise content in cp
Browse files Browse the repository at this point in the history
We had accidentally used precise content leadingto blowup
  • Loading branch information
yoff committed Oct 1, 2024
1 parent 64890a1 commit f39dc41
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ predicate yieldStoreStep(Node nodeFrom, Content c, Node nodeTo) {
c instanceof SetElementContent
or
comp instanceof DictComp and
c instanceof DictionaryElementContent
c instanceof DictionaryElementAnyContent
)
or
not exists(Comp comp | func = comp.getFunction()) and
Expand All @@ -204,7 +204,7 @@ predicate yieldStoreStep(Node nodeFrom, Content c, Node nodeTo) {
or
c instanceof SetElementContent
or
c instanceof DictionaryElementContent
c instanceof DictionaryElementAnyContent
)
)
}
Expand Down

0 comments on commit f39dc41

Please sign in to comment.