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
274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'lib/rbs/ast/members.rb', line 274 def to_json(state = _ = nil) { member: :attr_reader, name: name, type: type, ivar_name: ivar_name, kind: kind, annotations: annotations, location: location, comment: comment }.to_json(state) end |