Class: RBS::AST::Members::ClassVariable
- 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
132 133 134 135 136 137 138 139 140 |
# File 'lib/rbs/ast/members.rb', line 132 def to_json(*a) { member: :class_variable, name: name, type: type, location: location, comment: comment }.to_json(*a) end |