php-parser/node/stmt/try.go

46 lines
962 B
Go
Raw Normal View History

2017-12-06 12:47:17 +00:00
package stmt
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
)
type Try struct {
node.SimpleNode
token token.Token
stmts node.Node
catches []node.Node
finally node.Node
}
//TODO: stmts myst be []node.Node
func NewTry(token token.Token, stmts node.Node, catches []node.Node, finally node.Node) node.Node {
return Try{
node.SimpleNode{Name: "Try", Attributes: make(map[string]string)},
token,
stmts,
catches,
finally,
}
}
func (n Try) 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)
fmt.Fprintf(out, "\n%vstmts:", indent+" ")
n.stmts.Print(out, indent+" ")
fmt.Fprintf(out, "\n%vcatches:", indent+" ")
for _, nn := range n.catches {
nn.Print(out, indent+" ")
}
2017-12-06 13:04:44 +00:00
if n.finally != nil {
fmt.Fprintf(out, "\n%vfinally:", indent+" ")
n.finally.Print(out, indent+" ")
}
2017-12-06 12:47:17 +00:00
}