57 lines
1.0 KiB
Go
57 lines
1.0 KiB
Go
package scalar
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/meta"
|
|
"github.com/z7zmey/php-parser/position"
|
|
"github.com/z7zmey/php-parser/walker"
|
|
)
|
|
|
|
// Dnumber node
|
|
type Dnumber struct {
|
|
Meta []meta.Meta
|
|
Position *position.Position
|
|
Value string
|
|
}
|
|
|
|
// NewDnumber node constructor
|
|
func NewDnumber(Value string) *Dnumber {
|
|
return &Dnumber{
|
|
Value: Value,
|
|
}
|
|
}
|
|
|
|
// SetPosition sets node position
|
|
func (n *Dnumber) SetPosition(p *position.Position) {
|
|
n.Position = p
|
|
}
|
|
|
|
// GetPosition returns node positions
|
|
func (n *Dnumber) GetPosition() *position.Position {
|
|
return n.Position
|
|
}
|
|
|
|
func (n *Dnumber) AddMeta(m []meta.Meta) {
|
|
n.Meta = append(n.Meta, m...)
|
|
}
|
|
|
|
func (n *Dnumber) GetMeta() []meta.Meta {
|
|
return n.Meta
|
|
}
|
|
|
|
// Attributes returns node attributes as map
|
|
func (n *Dnumber) Attributes() map[string]interface{} {
|
|
return map[string]interface{}{
|
|
"Value": n.Value,
|
|
}
|
|
}
|
|
|
|
// Walk traverses nodes
|
|
// Walk is invoked recursively until v.EnterNode returns true
|
|
func (n *Dnumber) Walk(v walker.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|