-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhandlers_gen.go
215 lines (161 loc) · 3.57 KB
/
handlers_gen.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package astv
import "go/ast"
type ArrayTypeHandler interface {
ArrayType(*ast.ArrayType) bool
}
type AssignStmtHandler interface {
AssignStmt(*ast.AssignStmt) bool
}
type BadDeclHandler interface {
BadDecl(*ast.BadDecl) bool
}
type BadExprHandler interface {
BadExpr(*ast.BadExpr) bool
}
type BadStmtHandler interface {
BadStmt(*ast.BadStmt) bool
}
type BasicLitHandler interface {
BasicLit(*ast.BasicLit) bool
}
type BinaryExprHandler interface {
BinaryExpr(*ast.BinaryExpr) bool
}
type BlockStmtHandler interface {
BlockStmt(*ast.BlockStmt) bool
}
type BranchStmtHandler interface {
BranchStmt(*ast.BranchStmt) bool
}
type CallExprHandler interface {
CallExpr(*ast.CallExpr) bool
}
type CaseClauseHandler interface {
CaseClause(*ast.CaseClause) bool
}
type ChanTypeHandler interface {
ChanType(*ast.ChanType) bool
}
type CommClauseHandler interface {
CommClause(*ast.CommClause) bool
}
type CommentHandler interface {
Comment(*ast.Comment) bool
}
type CommentGroupHandler interface {
CommentGroup(*ast.CommentGroup) bool
}
type CompositeLitHandler interface {
CompositeLit(*ast.CompositeLit) bool
}
type DeclStmtHandler interface {
DeclStmt(*ast.DeclStmt) bool
}
type DeferStmtHandler interface {
DeferStmt(*ast.DeferStmt) bool
}
type EllipsisHandler interface {
Ellipsis(*ast.Ellipsis) bool
}
type EmptyStmtHandler interface {
EmptyStmt(*ast.EmptyStmt) bool
}
type ExprStmtHandler interface {
ExprStmt(*ast.ExprStmt) bool
}
type FieldHandler interface {
Field(*ast.Field) bool
}
type FieldListHandler interface {
FieldList(*ast.FieldList) bool
}
type ForStmtHandler interface {
ForStmt(*ast.ForStmt) bool
}
type FuncDeclHandler interface {
FuncDecl(*ast.FuncDecl) bool
}
type FuncLitHandler interface {
FuncLit(*ast.FuncLit) bool
}
type FuncTypeHandler interface {
FuncType(*ast.FuncType) bool
}
type GenDeclHandler interface {
GenDecl(*ast.GenDecl) bool
}
type GoStmtHandler interface {
GoStmt(*ast.GoStmt) bool
}
type IdentHandler interface {
Ident(*ast.Ident) bool
}
type IfStmtHandler interface {
IfStmt(*ast.IfStmt) bool
}
type ImportSpecHandler interface {
ImportSpec(*ast.ImportSpec) bool
}
type IncDecStmtHandler interface {
IncDecStmt(*ast.IncDecStmt) bool
}
type IndexExprHandler interface {
IndexExpr(*ast.IndexExpr) bool
}
type InterfaceTypeHandler interface {
InterfaceType(*ast.InterfaceType) bool
}
type KeyValueExprHandler interface {
KeyValueExpr(*ast.KeyValueExpr) bool
}
type LabeledStmtHandler interface {
LabeledStmt(*ast.LabeledStmt) bool
}
type MapTypeHandler interface {
MapType(*ast.MapType) bool
}
type ParenExprHandler interface {
ParenExpr(*ast.ParenExpr) bool
}
type RangeStmtHandler interface {
RangeStmt(*ast.RangeStmt) bool
}
type ReturnStmtHandler interface {
ReturnStmt(*ast.ReturnStmt) bool
}
type SelectStmtHandler interface {
SelectStmt(*ast.SelectStmt) bool
}
type SelectorExprHandler interface {
SelectorExpr(*ast.SelectorExpr) bool
}
type SendStmtHandler interface {
SendStmt(*ast.SendStmt) bool
}
type SliceExprHandler interface {
SliceExpr(*ast.SliceExpr) bool
}
type StarExprHandler interface {
StarExpr(*ast.StarExpr) bool
}
type StructTypeHandler interface {
StructType(*ast.StructType) bool
}
type SwitchStmtHandler interface {
SwitchStmt(*ast.SwitchStmt) bool
}
type TypeAssertExprHandler interface {
TypeAssertExpr(*ast.TypeAssertExpr) bool
}
type TypeSpecHandler interface {
TypeSpec(*ast.TypeSpec) bool
}
type UnaryExprHandler interface {
UnaryExpr(*ast.UnaryExpr) bool
}
type ValueSpecHandler interface {
ValueSpec(*ast.ValueSpec) bool
}
type DefaultHandler interface {
Handle(ast.Node) bool
}