php-parser/node/expr/yield.go

41 lines
617 B
Go
Raw Normal View History

2017-12-18 18:45:18 +00:00
package expr
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n Yield) Name() string {
return "Yield"
}
2017-12-18 18:45:18 +00:00
type Yield struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-18 18:45:18 +00:00
key node.Node
value node.Node
}
func NewYield(key node.Node, value node.Node) node.Node {
return Yield{
2017-12-27 17:55:58 +00:00
"Yield",
2017-12-18 18:45:18 +00:00
key,
value,
}
}
func (n Yield) Print(out io.Writer, indent string) {
2017-12-27 17:55:58 +00:00
fmt.Fprintf(out, "\n%v%v [- -]", indent, n.name)
2017-12-18 18:45:18 +00:00
if n.key != nil {
fmt.Fprintf(out, "\n%vkey:", indent+" ")
n.key.Print(out, indent+" ")
}
if n.value != nil {
fmt.Fprintf(out, "\n%vvalue:", indent+" ")
n.value.Print(out, indent+" ")
}
}