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
Here are things noticed about the alpha release:
rescript
The text was updated successfully, but these errors were encountered:
Compiler started adding empty strings around values in template literals (DZakh/sury#1 (comment))
Example:
Js.log(`${1->Js.Int.toString}${2->Js.Int.toString}`)
Output:
console.log("" + (1).toString() + "" + (2).toString() + "");
Before:
console.log((1).toString() + (2).toString());
Sorry, something went wrong.
^10.0.0-alpha.1
Thanks! Can repro directly from the command line.
No branches or pull requests
Here are things noticed about the alpha release:
will leave it for now
rescript
on Windows, investigate (see "rescript build" crashes on Windows #5517). SolvedThat behaviour is to be expected, coming from a bug fix.
The text was updated successfully, but these errors were encountered: