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
Tracking ReScript v11 syntax changes:
Extensible records (e.g. type t = {...t1, x:int, ...t2} Explore record type extension rescript#5659
t = {...t1, x:int, ...t2}
Partial application of uncurried functions: foo(1, ...) Add surface syntax for partial application of uncurried functions rescript#6166
foo(1, ...)
Dynamic Import module M = await Belt.Array Dynamic import rescript#5703
module M = await Belt.Array
Variant type spreads type bb = | ...aa | Three | Four Variant type spreads rescript#6316
type bb = | ...aa | Three | Four
Tagged template literals sqlselect * from table
sqlselect * from table
select * from table
assert
**
The text was updated successfully, but these errors were encountered:
What about tagged template literals?
Sorry, something went wrong.
No branches or pull requests
Tracking ReScript v11 syntax changes:
Extensible records (e.g. type
t = {...t1, x:int, ...t2}
Explore record type extension rescript#5659Partial application of uncurried functions:
foo(1, ...)
Add surface syntax for partial application of uncurried functions rescript#6166Dynamic Import
module M = await Belt.Array
Dynamic import rescript#5703Variant type spreads
type bb = | ...aa | Three | Four
Variant type spreads rescript#6316Tagged template literals
sql
select * from table
Some notes:
assert
is parsed as a regular function Parseassert
as a regular function rescript#6180**
is now right-associative.The text was updated successfully, but these errors were encountered: