php-parser/node/scalar/magic_constant.go
2018-01-08 21:50:39 +02:00

53 lines
884 B
Go

package scalar
import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node"
)
type MagicConstant struct {
position *node.Position
comments []comment.Comment
Value string
}
func NewMagicConstant(Value string) *MagicConstant {
return &MagicConstant{
nil,
nil,
Value,
}
}
func (n *MagicConstant) Attributes() map[string]interface{} {
return map[string]interface{}{
"Value": n.Value,
}
}
func (n *MagicConstant) Position() *node.Position {
return n.position
}
func (n *MagicConstant) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n *MagicConstant) Comments() []comment.Comment {
return n.comments
}
func (n *MagicConstant) SetComments(c []comment.Comment) node.Node {
n.comments = c
return n
}
func (n *MagicConstant) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
v.LeaveNode(n)
}