Class: RBS::AST::Members::InstanceVariable
- Includes:
- Var
- Defined in:
- lib/rbs/ast/members.rb
Instance Attribute Summary
Attributes included from Var
#comment, #location, #name, #type
Instance Method Summary collapse
Methods included from Var
Instance Method Details
#to_json(*a) ⇒ Object
109 110 111 112 113 114 115 116 117 |
# File 'lib/rbs/ast/members.rb', line 109 def to_json(*a) { member: :instance_variable, name: name, type: type, location: location, comment: comment }.to_json(*a) end |