php-parser/node/stmt/catch.go

44 lines
944 B
Go
Raw Normal View History

2017-12-06 12:30:45 +00:00
package stmt
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
)
type Catch struct {
node.SimpleNode
token token.Token
types []node.Node
variable node.Node
stmts node.Node
}
//TODO: stmts myst be []node.Node
func NewCatch(token token.Token, types []node.Node, variable node.Node, stmts node.Node) node.Node {
return Catch{
node.SimpleNode{Name: "Catch", Attributes: make(map[string]string)},
token,
types,
variable,
stmts,
}
}
func (n Catch) Print(out io.Writer, indent string) {
fmt.Fprintf(out, "\n%v%v [%d %d] %q", indent, n.Name, n.token.StartLine, n.token.EndLine, n.token.Value)
2017-12-06 12:47:17 +00:00
fmt.Fprintf(out, "\n%vtypes:", indent+" ")
2017-12-06 12:30:45 +00:00
for _, nn := range n.types {
nn.Print(out, indent+" ")
}
fmt.Fprintf(out, "\n%vvariable:", indent+" ")
n.variable.Print(out, indent+" ")
fmt.Fprintf(out, "\n%vstmts:", indent+" ")
n.stmts.Print(out, indent+" ")
}