63 lines
1015 B
Go
63 lines
1015 B
Go
package expr
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/comment"
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type InstanceOf struct {
|
|
position *node.Position
|
|
comments *[]comment.Comment
|
|
Expr node.Node
|
|
Class node.Node
|
|
}
|
|
|
|
func NewInstanceOf(Expr node.Node, Class node.Node) node.Node {
|
|
return &InstanceOf{
|
|
nil,
|
|
nil,
|
|
Expr,
|
|
Class,
|
|
}
|
|
}
|
|
|
|
func (n InstanceOf) Attributes() map[string]interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (n InstanceOf) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n InstanceOf) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
func (n InstanceOf) Comments() *[]comment.Comment {
|
|
return n.comments
|
|
}
|
|
|
|
func (n InstanceOf) SetComments(c []comment.Comment) node.Node {
|
|
n.comments = &c
|
|
return n
|
|
}
|
|
|
|
func (n InstanceOf) Walk(v node.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.Expr != nil {
|
|
vv := v.GetChildrenVisitor("Expr")
|
|
n.Expr.Walk(vv)
|
|
}
|
|
|
|
if n.Class != nil {
|
|
vv := v.GetChildrenVisitor("Class")
|
|
n.Class.Walk(vv)
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|