php-parser/node/stmt/property_list.go

45 lines
805 B
Go
Raw Normal View History

2017-12-08 15:08:22 +00:00
package stmt
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func(n PropertyList) Name() string {
return "PropertyList"
}
2017-12-08 15:08:22 +00:00
type PropertyList struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-22 11:20:34 +00:00
modifiers []node.Node
2017-12-08 15:08:22 +00:00
properties []node.Node
}
2017-12-22 11:20:34 +00:00
func NewPropertyList(modifiers []node.Node, properties []node.Node) node.Node {
2017-12-08 15:08:22 +00:00
return PropertyList{
2017-12-27 17:55:58 +00:00
"PropertyList",
2017-12-08 15:08:22 +00:00
modifiers,
properties,
}
}
func (n PropertyList) Print(out io.Writer, indent string) {
2017-12-27 17:55:58 +00:00
fmt.Fprintf(out, "\n%v%v [- -]", indent, n.name)
2017-12-08 15:08:22 +00:00
if n.modifiers != nil {
fmt.Fprintf(out, "\n%vmodifiers:", indent+" ")
2017-12-22 11:20:34 +00:00
for _, nn := range n.modifiers {
nn.Print(out, indent+" ")
}
2017-12-08 15:08:22 +00:00
}
if n.properties != nil {
fmt.Fprintf(out, "\n%vproperties:", indent+" ")
for _, nn := range n.properties {
nn.Print(out, indent+" ")
}
}
}