php-parser/node/stmt/nop.go
2018-01-09 15:51:32 +02:00

25 lines
288 B
Go

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