-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved Haskell and PureScript (#3020)
- Loading branch information
1 parent
ce5e0f0
commit 679539e
Showing
17 changed files
with
488 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
Foo | ||
Foo' | ||
Foo.Bar | ||
Baz.Foobar_42 | ||
|
||
---------------------------------------------------- | ||
|
||
[ | ||
["constant", "Foo"], | ||
["constant", "Foo.Bar"], | ||
["constant", "Baz.Foobar_42"] | ||
["constant", ["Foo"]], | ||
["constant", ["Foo'"]], | ||
["constant", [ | ||
"Foo", | ||
["punctuation", "."], | ||
"Bar" | ||
]], | ||
["constant", [ | ||
"Baz", | ||
["punctuation", "."], | ||
"Foobar_42" | ||
]] | ||
] | ||
|
||
---------------------------------------------------- | ||
|
||
Checks for constants. | ||
Checks for constants. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
foo | ||
foo' | ||
Foo.bar | ||
Baz.foobar_42 | ||
|
||
---------------------------------------------------- | ||
|
||
[ | ||
["hvariable", "foo"], | ||
["hvariable", "Foo.bar"], | ||
["hvariable", "Baz.foobar_42"] | ||
["hvariable", ["foo"]], | ||
["hvariable", ["foo'"]], | ||
["hvariable", [ | ||
"Foo", | ||
["punctuation", "."], | ||
"bar" | ||
]], | ||
["hvariable", [ | ||
"Baz", | ||
["punctuation", "."], | ||
"foobar_42" | ||
]] | ||
] | ||
|
||
---------------------------------------------------- | ||
|
||
Checks for hvariables. | ||
Checks for hvariables. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.