reason icon indicating copy to clipboard operation
reason copied to clipboard

Simple, fast & type safe code that leverages the JavaScript & OCaml ecosystems

Results 208 reason issues
Sort by recently updated
recently updated
newest added

Since the BuckleScript/ReScript rebranding we didn't get much information regarding ReasonML's future 😕 It seems a v4 is on its way (and from the look of it the new features...

``` let editor = Tiptap.Editor.use( ~provider, ~document=ydoc, ~renderCursor=CollaborationCursor.renderCursor, ~user=initialUser, ~onCreate=({editor}: Tiptap.createProps) => { onCreateEditor(editor) } ); ``` Gets formatted to ``` let editor = Tiptap.Editor.use( ~provider, ~document=ydoc, ~renderCursor=CollaborationCursor.renderCursor, ~user=initialUser, ~onCreate=({editor}:...

Printer

Parser can't do automatic semicolon insertion (error recovery). Example: Works: ```reason let x = { 3; } // no semicolon, `refmt` can parse and insert it let x = {...

This PR applies the same solution that we use for `/\*` and makes `=\>` work. Because we reuse the solution that is already in place, this is still parsed as...

CLA Signed

Reasonml has a great document and I love it, but it really needs dark mode.

I'm trying to install Reason on Windows 10 and I get ``` Fatal error: exception Unix.Unix_error(Unix.ENOENT, "create_process", "Path\\To\\NodeJS\\node_modules\\esy\\3/i/esy-3dd856eb/bin/esy.exe") ``` when I run `esy`. I also had issues during the install....

One common feedback folks have expressed is that the attribute syntax looks weird. I thought it was similar enough to JS/Python/etc that folks wouldn't mind, but I guess that's not...

RFC
Printer
Parser

# Overview Ok, I worked with @yawaramin (huge thank you to them) on [the ReasonML forums](https://reasonml.chat/t/string-literals-and-string-module-issues/2662/6) to narrow this down. I was clearly misreading the `String` module, so that's fixed;...

This is possible in OCaml(4.08) but not in Reason ```reason let f () = let open struct end in () ```

## Reason v4 - Parse Hashtags for polymorphic variants. > This is diff 3 in a stack of github PRs: Only examine the most recent commit in this PR to...

CLA Signed