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

Operator precedence support #47

Open
eduardo-imadeira opened this issue Mar 14, 2024 · 0 comments
Open

Operator precedence support #47

eduardo-imadeira opened this issue Mar 14, 2024 · 0 comments
Labels
bug Something isn't working good first issue Good for newcomers help wanted Extra attention is needed

Comments

@eduardo-imadeira
Copy link
Collaborator

eduardo-imadeira commented Mar 14, 2024

We would like to be able to support operator precedence like this:
x: Int = 12 - 1 * 5 ;

currently to support this we have to do it like this, due to some grammar limitations:
x: Int = (12 - 1) * 5 ;

@eduardo-imadeira eduardo-imadeira added enhancement New feature or request help wanted Extra attention is needed good first issue Good for newcomers labels Mar 14, 2024
@alcides alcides added bug Something isn't working and removed enhancement New feature or request labels Mar 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants