File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -218,10 +218,12 @@ func (*CommentGroup) exprNode() {}
218
218
// ------------------------------------------------
219
219
220
220
type Field struct {
221
- Doc * CommentGroup // associated documentation; or nil
222
- Type Expr // field/method/parameter type; or nil
223
- Names []* Ident // field/method/(type) parameter names; or nil
224
- Comment * CommentGroup // line comments; or nil
221
+ Doc * CommentGroup // associated documentation; or nil
222
+ Type Expr // field/method/parameter type; or nil
223
+ Names []* Ident // field/method/(type) parameter names; or nil
224
+ Comment * CommentGroup // line comments; or nil
225
+ Access AccessSpecifier // field access(Record Type); Struct Field default is Public,Class Field default is Private
226
+ IsStatic bool // static field
225
227
}
226
228
227
229
func (* Field ) exprNode () {}
You can’t perform that action at this time.
0 commit comments