Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix augmented assignment #585

Merged
merged 1 commit into from
Sep 5, 2024
Merged

Fix augmented assignment #585

merged 1 commit into from
Sep 5, 2024

Commits on Sep 5, 2024

  1. Fix augmented assignment

    It's possible that part of the expression of an augmented
    assignment doesn't resolve to an int. In such a case,
    the current code tries to bitwise compute the values anyway.
    This of course results in a syntax error.
    
    This fix in this change ensures both left and right side
    of the expression resolve to an int value. Other bitwise
    computable values in the future could also be added.
    
    Signed-off-by: Eric Brown <eric.brown@securesauce.dev>
    ericwb committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    5ed4367 View commit details
    Browse the repository at this point in the history