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
Given the file foo.elm:
foo.elm
-- stuff x = 1
Convert to CRLF line endings:
$ unix2dos foo.elm
And dump the parse tree:
file (0, 0) - (2, 0) line_comment (0, 0) - (0, 9) "-- stuff\r" value_declaration (1, 0) - (1, 5) function_declaration_left (1, 0) - (1, 1) lower_case_identifier (1, 0) - (1, 1) "x" eq (1, 2) - (1, 3) "=" number_constant_expr (1, 4) - (1, 5) number_literal (1, 4) - (1, 5) "1"
Note the unwanted "\r" in the line_comment.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the file
foo.elm
:Convert to CRLF line endings:
And dump the parse tree:
Note the unwanted "\r" in the line_comment.
The text was updated successfully, but these errors were encountered: