Class: RBS::AST::Members::AttrReader
- Inherits:
-
Object
- Object
- RBS::AST::Members::AttrReader
- Includes:
- Attribute
- Defined in:
- lib/rbs/ast/members.rb
Instance Attribute Summary
Attributes included from Attribute
#annotations, #comment, #ivar_name, #location, #name, #type
Instance Method Summary collapse
Methods included from Attribute
Instance Method Details
#to_json(*a) ⇒ Object
231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/rbs/ast/members.rb', line 231 def to_json(*a) { member: :attr_reader, name: name, type: type, ivar_name: ivar_name, annotations: annotations, location: location, comment: comment }.to_json(*a) end |