[refactoring] update ast structure of "InlinHtml" node

This commit is contained in:
Vadym Slizov
2020-09-14 16:36:01 +03:00
parent 7678303cb9
commit 8b4d65ac4d
7 changed files with 36 additions and 36 deletions

View File

@@ -535,7 +535,8 @@ func (n *StmtIf) Accept(v NodeVisitor) {
// StmtInlineHtml node
type StmtInlineHtml struct {
Node
Value []byte
InlineHtmlTkn *token.Token
Value []byte
}
func (n *StmtInlineHtml) Accept(v NodeVisitor) {

View File

@@ -200,3 +200,7 @@ func (v *FilterTokens) StmtEcho(n *ast.StmtEcho) {
n.SeparatorTkns = nil
n.SemiColonTkn = nil
}
func (v *FilterTokens) StmtInlineHtml(n *ast.StmtInlineHtml) {
n.InlineHtmlTkn = nil
}