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

Fix tokenization for method call on integer #4

Open
Jomy10 opened this issue Dec 30, 2022 · 0 comments
Open

Fix tokenization for method call on integer #4

Jomy10 opened this issue Dec 30, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@Jomy10
Copy link
Owner

Jomy10 commented Dec 30, 2022

Given the following code snippet:

a := 6.add(5)

The tokenizer will generate the following tokens:

Ident(a), Declare(:=), Float(6.), Ident(add), OpenBracket((), Integer(5), CloseBracket())

However, the Float(6.) token should be Integer(6), Dot(.).

This requires either a rewrite of the tokenizer, disallowing \d+\. as a float, or tokenizing floats differently.

@Jomy10 Jomy10 added the bug Something isn't working label Dec 30, 2022
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

1 participant