php-parser/node/name/name.go

36 lines
515 B
Go
Raw Normal View History

2017-12-05 21:36:28 +00:00
package name
import (
"fmt"
"io"
2017-12-27 17:55:58 +00:00
"github.com/z7zmey/php-parser/node"
2017-12-05 21:36:28 +00:00
)
2017-12-27 17:55:58 +00:00
func (n NameNode) Name() string {
return "Name"
}
type NameNode struct {
name string
2017-12-05 21:36:28 +00:00
parts []node.Node
}
func NewName(parts []node.Node) node.Node {
2017-12-27 17:55:58 +00:00
return NameNode{
"Name",
2017-12-05 21:36:28 +00:00
parts,
}
}
2017-12-27 17:55:58 +00:00
func (n NameNode) Print(out io.Writer, indent string) {
fmt.Fprintf(out, "\n%v%v", indent, n.name)
if n.parts != nil {
fmt.Fprintf(out, "\n%vparts:", indent+" ")
for _, nn := range n.parts {
nn.Print(out, indent+" ")
}
2017-12-05 21:36:28 +00:00
}
2017-12-27 17:55:58 +00:00
}