-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
numeric_literal_separator breaks numbers < 1 #7736
Comments
@muuvmuuv want to take a look, please? |
Do you have a few more cases so I can add them all to the tests? Kinda weird that it adds a underscore here. |
I had previous case, you fixed it, it allowed me to discover new case. I am not familiar with more failing cases yet, i hope none will be there. |
Problem with this case is that I cannot test it actually because the test suite only accepts code to be not the exact match than expected code. Hm, any idea? Yeah, this one is critical, will try to fix it asap. |
in data provider, use |
@muuvmuuv Just don't add this case to |
original code:
<?php echo 0.001;
is modified into
<?php echo 0._001;
which is syntax error
The text was updated successfully, but these errors were encountered: