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

Allow typevars in do expressions #437

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Commits on Jun 7, 2024

  1. Allow typevars in do expressions

    Allows constructs like
    f() do (x::T) where T; body end
    It's already being parsed, but the where clause is put into a tuple, causing a syntax error downstream. This change just avoids putting it in a tuple.
    sgaure committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    68705f4 View commit details
    Browse the repository at this point in the history
  2. Tests for do with typevars

    sgaure committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    0b5b226 View commit details
    Browse the repository at this point in the history
  3. Removed some trailing spaces

    sgaure committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    20b1eb1 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

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