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: reorder compilation of branches in stmt.py #3603

Merged
merged 3 commits into from
Oct 17, 2023

Commits on Sep 13, 2023

  1. chore: reorder compilation of branches in stmt.py

    the if and else branches were being allocated out-of-source-order. this
    commit switches the order of compilation of the if and else branches to
    be in source order. this is a hygienic fix, right now the only thing
    that should be affected is the memory allocator (but if more side
    effects are ever introduced in codegen, the existing code might compile
    the side effects out of order).
    charles-cooper committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    ffbc503 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2023

  1. Configuration menu
    Copy the full SHA
    f41d1a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    05819dd View commit details
    Browse the repository at this point in the history