php-parser/node/expr/static_property_fetch.go

41 lines
749 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 StaticPropertyFetch) Name() string {
return "StaticPropertyFetch"
}
type StaticPropertyFetch struct {
2017-12-27 17:55:58 +00:00
name string
class node.Node
property node.Node
}
2017-12-27 17:55:58 +00:00
func NewStaticPropertyFetch(class node.Node, property node.Node) node.Node {
return StaticPropertyFetch{
2017-12-27 17:55:58 +00:00
"StaticPropertyFetch",
class,
2017-12-27 17:55:58 +00:00
property,
}
}
func (n StaticPropertyFetch) 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.class != nil {
fmt.Fprintf(out, "\n%vclass:", indent+" ")
n.class.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+" ")
}
}