2017-12-09 10:58:35 +00:00
|
|
|
package stmt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
"github.com/z7zmey/php-parser/token"
|
|
|
|
)
|
|
|
|
|
2017-12-27 17:55:58 +00:00
|
|
|
func(n TraitUseAlias) Name() string {
|
|
|
|
return "TraitUseAlias"
|
|
|
|
}
|
|
|
|
|
2017-12-09 10:58:35 +00:00
|
|
|
type TraitUseAlias struct {
|
2017-12-27 17:55:58 +00:00
|
|
|
name string
|
2017-12-09 10:58:35 +00:00
|
|
|
ref node.Node
|
|
|
|
modifier node.Node
|
|
|
|
alias token.TokenInterface
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTraitUseAlias(ref node.Node, modifier node.Node, alias token.TokenInterface) node.Node {
|
|
|
|
return TraitUseAlias{
|
2017-12-27 17:55:58 +00:00
|
|
|
"TraitUseAlias",
|
2017-12-09 10:58:35 +00:00
|
|
|
ref,
|
|
|
|
modifier,
|
|
|
|
alias,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n TraitUseAlias) 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-09 10:58:35 +00:00
|
|
|
|
|
|
|
if n.alias != nil {
|
|
|
|
fmt.Fprintf(out, "\n%valias: %q", indent+" ", n.alias.GetValue())
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.ref != nil {
|
|
|
|
fmt.Fprintf(out, "\n%vmethod", indent+" ")
|
|
|
|
n.ref.Print(out, indent+" ")
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.modifier != nil {
|
|
|
|
fmt.Fprintf(out, "\n%vmodifier:", indent+" ")
|
|
|
|
n.modifier.Print(out, indent+" ")
|
|
|
|
}
|
|
|
|
}
|