php-parser/node/stmt/do.go
2017-12-27 19:55:58 +02:00

44 lines
736 B
Go

package stmt
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
)
func(n Do) Name() string {
return "Do"
}
type Do struct {
name string
token token.Token
stmt node.Node
cond node.Node
}
func NewDo(token token.Token, stmt node.Node, cond node.Node) node.Node {
return Do{
"Do",
token,
stmt,
cond,
}
}
func (n Do) 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)
if n.cond != nil {
fmt.Fprintf(out, "\n%vcond:", indent+" ")
n.cond.Print(out, indent+" ")
}
if n.stmt != nil {
fmt.Fprintf(out, "\n%vstmt:", indent+" ")
n.stmt.Print(out, indent+" ")
}
}