php-parser/node/stmt/nop.go
2018-01-04 22:09:48 +02:00

39 lines
546 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Nop struct {
attributes map[string]interface{}
position *node.Position
}
func NewNop() node.Node {
return &Nop{
map[string]interface{}{},
nil,
}
}
func (n Nop) Attributes() map[string]interface{} {
return n.attributes
}
func (n Nop) Position() *node.Position {
return n.position
}
func (n Nop) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n Nop) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
v.LeaveNode(n)
}