php-parser/node/expr/closure_use.go

37 lines
627 B
Go
Raw Normal View History

2017-12-16 21:02:18 +00:00
package expr
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n ClusureUse) Name() string {
return "ClusureUse"
}
2017-12-16 21:02:18 +00:00
type ClusureUse struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-16 21:02:18 +00:00
variable node.Node
byRef bool
}
func NewClusureUse(variable node.Node, byRef bool) node.Node {
return ClusureUse{
2017-12-27 17:55:58 +00:00
"ClusureUse",
2017-12-16 21:02:18 +00:00
variable,
byRef,
}
}
func (n ClusureUse) 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-16 21:02:18 +00:00
fmt.Fprintf(out, "\n%vby ref: %t", indent+" ", n.byRef)
if n.variable != nil {
fmt.Fprintf(out, "\n%vvariable:", indent+" ")
n.variable.Print(out, indent+" ")
}
}