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

lexer: TOML: Support more integer and floating formats #1832

Merged
merged 12 commits into from Jul 2, 2022

Commits on Jun 14, 2022

  1. Fix floating point format in TOML lexer

    in TOML, the decimal point must be surrounded by at least one digit on
    each side.
    ToruNiina committed Jun 14, 2022
    Configuration menu
    Copy the full SHA
    7340209 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f1eec39 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bb0ebc7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    284acde View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e36833f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    47bfed6 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2022

  1. Use Num::Oct and non-captured group for oct int

    Co-authored-by: Tan Le <tan.le@hey.com>
    ToruNiina and tancnle committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    97eab34 View commit details
    Browse the repository at this point in the history
  2. Use Num::Bin and non-captured group for bin int

    Co-authored-by: Tan Le <tan.le@hey.com>
    ToruNiina and tancnle committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    b1b7f8d View commit details
    Browse the repository at this point in the history
  3. Use Num::Hex and non-captured group for hex int

    Co-authored-by: Tan Le <tan.le@hey.com>
    ToruNiina and tancnle committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    75d11fc View commit details
    Browse the repository at this point in the history
  4. Use non-captured group if capture is not needed

    Co-authored-by: Tan Le <tan.le@hey.com>
    ToruNiina and tancnle committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    34fbc10 View commit details
    Browse the repository at this point in the history
  5. Use non-captured group if capture is not needed

    Co-authored-by: Tan Le <tan.le@hey.com>
    ToruNiina and tancnle committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    1cff1bf View commit details
    Browse the repository at this point in the history
  6. Use non-captured group if capture is not needed

    Co-authored-by: Tan Le <tan.le@hey.com>
    ToruNiina and tancnle committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    8a9c645 View commit details
    Browse the repository at this point in the history