With refmt (Reason 3.3.9 @ 9914cc69) The code: ```reason let a = <div> { let name = "joseph"; <span> {ReasonReact.string(name)} </span>; } </div>; ``` is transformed to ```reason let a = <div> {let name = "joseph" <span> {ReasonReact.string(name)} </span>} </div>; ``` The semicolon after *"joseph"* is remove by refmt, and the code no longer compiles. It's a regression bug.
With refmt (Reason 3.3.9 @ 9914cc69)
The code:
is transformed to
The semicolon after "joseph" is remove by refmt, and the code no longer compiles.
It's a regression bug.