-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unnecessary semicolons from the grammar
- Loading branch information
Jordan Mackie
authored and
Jordan Mackie
committed
Jan 18, 2023
1 parent
e0401de
commit bcd54d6
Showing
454 changed files
with
2,209 additions
and
2,258 deletions.
There are no files selected for viewing
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
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
10 changes: 5 additions & 5 deletions
10
crates/ditto-checker/tests/cmd/always_partial_application/test.stdin
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,7 +1,7 @@ | ||
module Test exports (..); | ||
module Test exports (..) | ||
|
||
always = fn (a) -> fn (_b) -> a; | ||
five: Int = always(5)(true); | ||
always = fn (a) -> fn (_b) -> a | ||
five: Int = always(5)(true) | ||
|
||
always_five: (a) -> Int = always(5); | ||
another_five: Int = always_five(unit); | ||
always_five: (a) -> Int = always(5) | ||
another_five: Int = always_five(unit) |
Oops, something went wrong.