trait_method_ref node

This commit is contained in:
vadim
2017-12-09 13:13:12 +02:00
parent 20232dd30c
commit 1efa7ff5ee
3 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,32 @@
package stmt
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
)
type TraitMethodRef struct {
node.SimpleNode
trait node.Node
method token.Token
}
func NewTraitMethodRef(trait node.Node, method token.Token) node.Node {
return TraitMethodRef{
node.SimpleNode{Name: "TraitMethodRef", Attributes: make(map[string]string)},
trait,
method,
}
}
func (n TraitMethodRef) Print(out io.Writer, indent string) {
fmt.Fprintf(out, "\n%v%v [- -] %q", indent, n.Name, n.method.Value)
if n.trait != nil {
fmt.Fprintf(out, "\n%vtrait", indent+" ")
n.trait.Print(out, indent+" ")
}
}