We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc8d2e5 commit a576b2eCopy full SHA for a576b2e
Tools/cases_generator/analyzer.py
@@ -445,7 +445,7 @@ def in_frame_push(idx: int) -> bool:
445
)
446
447
if lhs[0].kind == lx.TIMES or any(
448
- t.kind == lx.ARROW or t.kind == lx.LBRACKET for t in lhs[1:]
+ t.kind in {lx.ARROW, lx.LBRACKET} for t in lhs[1:]
449
):
450
# Don't handle: *ptr = ..., ptr->field = ..., or ptr[field] = ...
451
# Assume that they are visible to the GC.
0 commit comments