stil4m/elm-syntax

Multiline comments cant be parsed when preceding a statement on a single line

Closed this issue · 0 comments

This fails

x =
    {- y -} z

x =
    a
    {- y -} |> z

This does not:

x = 
   {- y -}
   z

x = {- y -} z
x =
    a
    {- y -} |> z