You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wrong arrow in pattern matching case (-> instead of =>). refmt gets the error location correct.
letf= x =>switch x {
|() -> /* Error should be at this arrow*/()
};/* Error shows up at the end of the file */
Incomplete function definition. refmt says there's an error at the start of line 2, which is reasonable. vim-reasonml marks the l in let and simply has the message invalidCharacter.orComment.orString
letf= x =>
let where it doesn't belong. Same error/issue as the previous example.
letf=()=>let
The text was updated successfully, but these errors were encountered:
Tested with esy and Reason 3.4.0.
->
instead of=>
).refmt
gets the error location correct.refmt
says there's an error at the start of line 2, which is reasonable. vim-reasonml marks thel
inlet
and simply has the messageinvalidCharacter.orComment.orString
let
where it doesn't belong. Same error/issue as the previous example.The text was updated successfully, but these errors were encountered: