[refactoring] update ast structure of "Throw" node
This commit is contained in:
@@ -709,7 +709,9 @@ func (n *StmtSwitch) Accept(v NodeVisitor) {
|
||||
// StmtThrow node
|
||||
type StmtThrow struct {
|
||||
Node
|
||||
Expr Vertex
|
||||
ThrowTkn *token.Token
|
||||
Expr Vertex
|
||||
SemiColonTkn *token.Token
|
||||
}
|
||||
|
||||
func (n *StmtThrow) Accept(v NodeVisitor) {
|
||||
|
||||
@@ -260,3 +260,8 @@ func (v *FilterTokens) StmtFinally(n *ast.StmtFinally) {
|
||||
n.OpenCurlyBracketTkn = nil
|
||||
n.CloseCurlyBracketTkn = nil
|
||||
}
|
||||
|
||||
func (v *FilterTokens) StmtThrow(n *ast.StmtThrow) {
|
||||
n.ThrowTkn = nil
|
||||
n.SemiColonTkn = nil
|
||||
}
|
||||
|
||||
@@ -2674,23 +2674,11 @@ func (p *Printer) printStmtAltSwitch(n *ast.StmtSwitch) {
|
||||
p.printToken(n.SemiColonTkn, ";")
|
||||
}
|
||||
|
||||
func (p *Printer) printStmtThrow(n ast.Vertex) {
|
||||
nn := n.(*ast.StmtThrow)
|
||||
p.printFreeFloating(nn, token.Start)
|
||||
|
||||
p.write([]byte("throw"))
|
||||
if nn.Expr.GetNode().Tokens.IsEmpty() {
|
||||
p.write([]byte(" "))
|
||||
}
|
||||
p.Print(nn.Expr)
|
||||
p.printFreeFloating(nn, token.Expr)
|
||||
|
||||
p.printFreeFloating(nn, token.SemiColon)
|
||||
if n.GetNode().Tokens.IsEmpty() {
|
||||
p.write([]byte(";"))
|
||||
}
|
||||
|
||||
p.printFreeFloating(nn, token.End)
|
||||
func (p *Printer) printStmtThrow(n *ast.StmtThrow) {
|
||||
p.printToken(n.ThrowTkn, "throw")
|
||||
p.bufStart = " "
|
||||
p.Print(n.Expr)
|
||||
p.printToken(n.SemiColonTkn, ";")
|
||||
}
|
||||
|
||||
func (p *Printer) printStmtTraitAdaptationList(n ast.Vertex) {
|
||||
|
||||
Reference in New Issue
Block a user