forked from z7zmey/php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn_class_method.go
85 lines (74 loc) · 1.64 KB
/
n_class_method.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package stmt
import (
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/walker"
)
// ClassMethod node
type ClassMethod struct {
ReturnsRef bool
PhpDocComment string
MethodName node.Node
Modifiers []node.Node
Params []node.Node
ReturnType node.Node
Stmts []node.Node
}
// NewClassMethod node constuctor
func NewClassMethod(MethodName node.Node, Modifiers []node.Node, ReturnsRef bool, Params []node.Node, ReturnType node.Node, Stmts []node.Node, PhpDocComment string) *ClassMethod {
return &ClassMethod{
ReturnsRef,
PhpDocComment,
MethodName,
Modifiers,
Params,
ReturnType,
Stmts,
}
}
// Attributes returns node attributes as map
func (n *ClassMethod) Attributes() map[string]interface{} {
return map[string]interface{}{
"ReturnsRef": n.ReturnsRef,
"PhpDocComment": n.PhpDocComment,
}
}
// Walk traverses nodes
// Walk is invoked recursively until v.EnterNode returns true
func (n *ClassMethod) Walk(v walker.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.MethodName != nil {
vv := v.GetChildrenVisitor("MethodName")
n.MethodName.Walk(vv)
}
if n.Modifiers != nil {
vv := v.GetChildrenVisitor("Modifiers")
for _, nn := range n.Modifiers {
if nn != nil {
nn.Walk(vv)
}
}
}
if n.Params != nil {
vv := v.GetChildrenVisitor("Params")
for _, nn := range n.Params {
if nn != nil {
nn.Walk(vv)
}
}
}
if n.ReturnType != nil {
vv := v.GetChildrenVisitor("ReturnType")
n.ReturnType.Walk(vv)
}
if n.Stmts != nil {
vv := v.GetChildrenVisitor("Stmts")
for _, nn := range n.Stmts {
if nn != nil {
nn.Walk(vv)
}
}
}
v.LeaveNode(n)
}