php-parser/node/expr/short_list.go

36 lines
540 B
Go
Raw Normal View History

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