Skip to content
New issue

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

Cleanup fast pipe implementation #2259

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion esy.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"install": [
["esy-installer", "reason.install"],
["esy-installer", "rtop.install"]
]
],
"buildsInSource": "_build"
}
}
2 changes: 1 addition & 1 deletion formatTest/errorTests/expected_output/reservedField.re
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
File "reservedField.re", line 1, characters 11-15:
Error: 1050: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
Error: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
2 changes: 1 addition & 1 deletion formatTest/errorTests/expected_output/reservedRecord.re
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
File "reservedRecord.re", line 1, characters 24-28:
Error: 1821: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
Error: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
File "reservedRecordPunned.re", line 1, characters 22-26:
Error: 3369: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
Error: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
File "reservedRecordType.re", line 1, characters 11-15:
Error: 766: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
Error: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
File "reservedRecordTypePunned.re", line 1, characters 11-15:
Error: 766: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
Error: type is a reserved keyword, it cannot be used as an identifier. Try `type_` or `_type` instead
190 changes: 0 additions & 190 deletions formatTest/typeCheckedTests/expected_output/fastPipe.re

This file was deleted.

168 changes: 0 additions & 168 deletions formatTest/typeCheckedTests/input/fastPipe.re

This file was deleted.

Loading