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
In the example
import Elm.CodeGen exposing (construct, parens, val, access) import Elm.Pretty exposing (prettyExpression) import Pretty exposing (pretty) expression = construct "f" [ access (parens (construct "A" [ val "()" ])) "a" ]
When the expression is printed, the result is
expression
expression |> prettyExpression |> pretty 120 --> "f A ().a"
but it should be
--> "f (A ()).a"
The text was updated successfully, but these errors were encountered:
Thanks for the test case.
Sorry, something went wrong.
No branches or pull requests
In the example
When the
expression
is printed, the result isbut it should be
--> "f (A ()).a"
The text was updated successfully, but these errors were encountered: