[refactoring] update ast structure of "Nop" node

This commit is contained in:
Vadym Slizov
2020-09-14 19:34:02 +03:00
parent e78f0dc650
commit 33af1df9c4
7 changed files with 1094 additions and 1114 deletions

View File

@@ -235,3 +235,7 @@ func (v *FilterTokens) StmtDeclare(n *ast.StmtDeclare) {
n.EndDeclareTkn = nil
n.SemiColonTkn = nil
}
func (v *FilterTokens) StmtNop(n *ast.StmtNop) {
n.SemiColonTkn = nil
}