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

Gdamore/int parser #45

Closed
wants to merge 3 commits into from
Closed

Gdamore/int parser #45

wants to merge 3 commits into from

Commits on Sep 19, 2024

  1. Configuration menu
    Copy the full SHA
    b9d9bea View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Move numeric tokens into grammar out of scanner.

    This includes the following "breaking" changes to be aware of:
    
    - The syntax '5.' (a lone trailing decimal point) is no longer
      supported for floating points.  Use '5.0' instead. (It is not
      deemed worth it to carry the lexer just for this!)
    - The "int_literal" and "float_literal" node types are collapsed
      into just "num_literal". (Due to LR grammar in TS, we have to
      collapse to avoid false early matches for integer.)
    - The "i" suffix for imaginaries is not supported (it is deprecated
      in D since at least 2.101, and its not worth it to carry that baggage.)
    gdamore committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    d28bafe View commit details
    Browse the repository at this point in the history
  2. Update the README

    gdamore committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    2a95ada View commit details
    Browse the repository at this point in the history