rescript-compiler
rescript-compiler copied to clipboard
The compiler for ReScript.
Example from rescript-webapi: ```rescript @val external queueMicrotask: (@uncurry (unit => unit)) => unit = "queueMicrotask" ``` is reformatted to ```rescript @val external queueMicrotask: (@uncurry unit => unit) => unit =...
It would be nice to set up https://github.com/marketplace/actions/continuous-benchmark for the compiler repo like e.g. @DZakh is doing it for https://github.com/DZakh/rescript-schema.
Adding the `capture` attribute to JsxDOM.res https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/capture
Fix https://github.com/rescript-lang/rescript-compiler/issues/6638
This one is probably for v12 and beyond. 1.) In #6133, the suggestion was made to provide separate npm packages for compiler binaries for each platform, add them as optional...
I'm not sure whether this is a bug. I'm wording this issue like a feature request instead of a bug report since transitivity isn't specified in the pinned-dependency docs. ###...
When debugging the AST through the parser's development CLI, there is a discrepancy between calling `dune exec bsc` and `dune exec res_parser`. The former defaults to uncurried mode, while the...