1. 04 Nov, 2023 1 commit
  2. 02 Nov, 2023 2 commits
  3. 20 Aug, 2023 1 commit
  4. 13 Aug, 2023 1 commit
  5. 12 Aug, 2023 2 commits
  6. 10 Aug, 2023 1 commit
  7. 09 Aug, 2023 2 commits
  8. 01 Aug, 2023 4 commits
  9. 27 Jul, 2023 1 commit
  10. 09 Jul, 2023 1 commit
  11. 08 Jul, 2023 1 commit
  12. 24 Jun, 2023 3 commits
  13. 22 Jun, 2023 3 commits
  14. 21 Jun, 2023 1 commit
  15. 19 Jun, 2023 2 commits
  16. 18 Jun, 2023 1 commit
  17. 17 Jun, 2023 1 commit
  18. 14 Jun, 2023 2 commits
  19. 11 Jun, 2023 2 commits
  20. 07 Jun, 2023 1 commit
  21. 06 Jun, 2023 1 commit
    • avoid dangling procedural else · 4756f497
      * Remove unneeded begin/end when the loop is a do/while
      * Dangling else check passes through statement attributes (bug fix)
      * Dangling else check passes through most control flow structures to reduce unneeded begin/end
      * Add test case and update changelog
      
      ---------
      
      Co-authored-by: qcorradi <q.corradi22@imperial.ac.uk>
      Co-authored-by: Zachary Snow <zach@zachjs.com>
      CORRADI Quentin committed
  22. 31 May, 2023 2 commits
  23. 29 May, 2023 2 commits
  24. 16 May, 2023 1 commit
  25. 15 May, 2023 1 commit
    • drop tf block edge case · 2aff725e
      - The deleted chunk in TFBlock has been unreachable since 57ef23ef. The
        RemoveComments change would make it reachable by dropping the leading
        Null in a task or function body.
      - The optimization in TFBlock was unsound because the nested block could
        shadow identifiers used (but not defined) in the tail of the outer
        block.
      - The optimization is not clearly necessary, so I'm dropping it for now.
      - Expand tf_block test coverage.
      Zachary Snow committed