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: iequals operator not present in parsing #159

Closed
wants to merge 9 commits into from

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    bf40506 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4597539 View commit details
    Browse the repository at this point in the history
  3. refactor: check pattern modifiers in the AST->IR phase

    Instead of checking for duplicate pattern modifiers and invalid modifier combinations in the CST->AST phase, we now do it in the AST->IR phase. The idea is that the CST->AST phase should perform as many checks as possible. Most semantic validations will be done in the AST->IR phase.
    plusvic authored and TommYDeeee committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    24943f8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a6390e9 View commit details
    Browse the repository at this point in the history
  5. refactor: use BTreeSet instead of BTreeMap for tracking duplicate…

    … pattern modifiers
    plusvic authored and TommYDeeee committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    208dd69 View commit details
    Browse the repository at this point in the history
  6. tests: fix test cases

    plusvic authored and TommYDeeee committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    54c1c79 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    58749c5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5891459 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0440bd1 View commit details
    Browse the repository at this point in the history