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
This code
StringPattern "test" |> Node emptyRange |> Writer.writePattern |> Writer.write
produces test instead of "test".
test
"test"
This causes problems in case expressions where instead of generating
toString : MyType -> String toString value = "Variant1" -> Variant1
elm-syntax's writer generates
toString : MyType -> String toString value = Variant1 -> Variant1
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This code
produces
test
instead of"test"
.This causes problems in case expressions where instead of generating
elm-syntax's writer generates
The text was updated successfully, but these errors were encountered: