Class: RBS::AST::Members::ClassInstanceVariable

Inherits:
Base
  • Object
show all
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

#==, #hash, #initialize

Instance Method Details

#to_json(*a) ⇒ Object



118
119
120
121
122
123
124
125
126
# File 'lib/rbs/ast/members.rb', line 118

def to_json(*a)
  {
    member: :class_instance_variable,
    name: name,
    type: type,
    location: location,
    comment: comment
  }.to_json(*a)
end