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

Parsing a infix operator is wrong #53

Open
kirisaki opened this issue Jan 28, 2020 · 1 comment
Open

Parsing a infix operator is wrong #53

kirisaki opened this issue Jan 28, 2020 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@kirisaki
Copy link
Contributor

The test says that following.

Apply' (Apply' (Lit' (Int' 1)) (Var' "*")) (Lit' (Int' 2))

But it is wrong. 1 + 2 should be parsed to Apply' (Apply' (Var' "*")) (Lit' (Int' 1)) (Lit' (Int' 2)).

@kirisaki kirisaki added the bug Something isn't working label Jan 28, 2020
@kirisaki kirisaki self-assigned this Jan 28, 2020
@ikngtty
Copy link
Member

ikngtty commented Jan 31, 2020

typo: 1 + 2 -> 1 * 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants