Class: RBS::AST::Members::AttrReader
- Includes:
- Attribute
- Defined in:
- lib/rbs/ast/members.rb
Instance Attribute Summary
Attributes included from Attribute
#annotations, #comment, #ivar_name, #kind, #location, #name, #type, #visibility
Instance Method Summary collapse
Methods included from Attribute
#==, #hash, #initialize, #update
Instance Method Details
#to_json(state = _ = nil) ⇒ Object
312 313 314 315 316 317 318 319 320 321 322 323 324 |
# File 'lib/rbs/ast/members.rb', line 312 def to_json(state = _ = nil) { member: :attr_reader, name: name, type: type, ivar_name: ivar_name, kind: kind, annotations: annotations, location: location, comment: comment, visibility: visibility }.to_json(state) end |