-
-
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
Bad split of chained method call expression #246
Labels
Comments
SteveGilham
changed the title
Bad split of long expression
Bad split of chained call expression
May 7, 2018
SteveGilham
changed the title
Bad split of chained call expression
Bad split of chained method call expression
May 7, 2018
Another case of what might be the same problem: Before: type Exception with
member inline __.FirstLine =
__.Message.Split([|Environment.NewLine|], StringSplitOptions.RemoveEmptyEntries).[0] After: type Exception with
member inline __.FirstLine =
__.Message.Split
([| Environment.NewLine |],
StringSplitOptions.RemoveEmptyEntries).[0] Results in compile error: |
nojaf
added a commit
that referenced
this issue
Oct 1, 2018
Ensure parenthesis around multiline expression before dot - fix #246
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Before
After
The first builds, the second goes
Base.fs(127,85):error FS0039: The field, constructor or member 'FileVersion' is not defined.
Base.fs(126,20): error FS0001: The type 'Diagnostics.FileVersionInfo' does not match the type 'string'
The text was updated successfully, but these errors were encountered: