trait_use node
This commit is contained in:
44
node/stmt/trait_use.go
Normal file
44
node/stmt/trait_use.go
Normal file
@@ -0,0 +1,44 @@
|
||||
package stmt
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
"github.com/z7zmey/php-parser/token"
|
||||
)
|
||||
|
||||
type TraitUse struct {
|
||||
node.SimpleNode
|
||||
token token.Token
|
||||
traits []node.Node
|
||||
adaptations []node.Node
|
||||
}
|
||||
|
||||
//TODO: traits myst be []node.Node
|
||||
func NewTraitUse(token token.Token, traits []node.Node, adaptations []node.Node) node.Node {
|
||||
return TraitUse{
|
||||
node.SimpleNode{Name: "TraitUse", Attributes: make(map[string]string)},
|
||||
token,
|
||||
traits,
|
||||
adaptations,
|
||||
}
|
||||
}
|
||||
|
||||
func (n TraitUse) Print(out io.Writer, indent string) {
|
||||
fmt.Fprintf(out, "\n%v%v [%d %d] %q", indent, n.Name, n.token.StartLine, n.token.EndLine, n.token.Value)
|
||||
|
||||
if n.traits != nil {
|
||||
fmt.Fprintf(out, "\n%vtraits:", indent+" ")
|
||||
for _, nn := range n.traits {
|
||||
nn.Print(out, indent+" ")
|
||||
}
|
||||
}
|
||||
|
||||
if n.adaptations != nil {
|
||||
fmt.Fprintf(out, "\n%vadaptations:", indent+" ")
|
||||
for _, nn := range n.adaptations {
|
||||
nn.Print(out, indent+" ")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user