We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Digit separators are not supported:
//@todo auto integer_literal = 1'000'000; auto floating_point_literal = 0.000'015'3; auto binary_literal = 0b0100'1100'0110; auto silly_example = 1'0'0'000'00;
The text was updated successfully, but these errors were encountered:
It's easy to fix by just adding the ' to the regular expression of the lexer. But don't know if this is sufficient? Should ' be removed for tokens?
Sorry, something went wrong.
guwirth
Successfully merging a pull request may close this issue.
Digit separators are not supported:
The text was updated successfully, but these errors were encountered: