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
Hello! Awesome project! It seems to me that this
init() readFile() |> .content |> .value
incorrectly compiles to
init()(readFile().content).value;
while I would expect
init(); readFile().content.value;
However it works correctly for these:
init() readFile() |> .content |> value init() readFile() |> content |> .value
init(); value(readFile().content); init(); content(readFile()).value;
The text was updated successfully, but these errors were encountered:
This is an ASI (Automatic Semicolon Insertion) bug. Thanks for reporting!
Sorry, something went wrong.
Fix ASI with pipes
25f2ee5
Fixes #933
Should be fixed in 0.6.66. Thanks again for the report!
Successfully merging a pull request may close this issue.
Hello! Awesome project!
It seems to me that this
incorrectly compiles to
while I would expect
However it works correctly for these:
The text was updated successfully, but these errors were encountered: