davidwessman / syntax_tree-erb

Syntax Tree support for ERB
MIT License
21 stars 3 forks source link

ERB-tag with if and end fails to parse #60

Closed davidwessman closed 1 year ago

davidwessman commented 1 year ago

ERB-snippet

  <%= if this
    value
  end %>

Expected

<%= if this
  value
end %>

or

<% if this %>
  <%= value %>
<% end %>

Actual formatting

Fails to parse

SyntaxTree::ERB::Parser::ParseError: Found no matching erb-tag to the if-tag at line 1,char 0 to line 3, char 125

Comment

Versions

syntax_tree: v6.1.1 syntax_tree-erb: v0.10.2