php-parser/node/expr/property_fetch.go

41 lines
722 B
Go
Raw Normal View History

package expr
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n PropertyFetch) Name() string {
return "PropertyFetch"
}
type PropertyFetch struct {
2017-12-27 17:55:58 +00:00
name string
variable node.Node
2017-12-27 17:55:58 +00:00
property node.Node
}
2017-12-27 17:55:58 +00:00
func NewPropertyFetch(variable node.Node, property node.Node) node.Node {
return PropertyFetch{
2017-12-27 17:55:58 +00:00
"PropertyFetch",
variable,
2017-12-27 17:55:58 +00:00
property,
}
}
func (n PropertyFetch) Print(out io.Writer, indent string) {
2017-12-27 17:55:58 +00:00
fmt.Fprintf(out, "\n%v%v [- -]", indent, n.name)
if n.variable != nil {
fmt.Fprintf(out, "\n%vvariable:", indent+" ")
n.variable.Print(out, indent+" ")
}
2017-12-27 17:55:58 +00:00
if n.property != nil {
fmt.Fprintf(out, "\n%vproperty:", indent+" ")
n.property.Print(out, indent+" ")
}
}