-
-
Notifications
You must be signed in to change notification settings - Fork 193
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
Spaces around the dynamic (?) operator #39
Labels
Comments
Agree. What are other infix operators which shouldn't have spaces around? This is relatively easy to handle, but it's hard to remember all the cases :-). |
I can't think of any other |
Steps to fix if anyone would like to handle this issue:
|
Is there a ".." operator? |
It is range operator e.g. 1..2 <--> (..) 1 2
1..2..5 <--> (.. ..) 1 2 5 That's how it is stored in F# ASTs. I'm not sure second form is valid to use in the code though. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got this:
converted to this:
which is not very common.
Unlike th other infix operators, the ? operator doesn't usually have spaces around
The text was updated successfully, but these errors were encountered: