class RBS::AST::Members::InstanceVariable

公共实例方法

to_json(state = _ = nil) 点击切换源码
# File rbs-3.8.0/lib/rbs/ast/members.rb, line 146
def to_json(state = _ = nil)
  {
    member: :instance_variable,
    name: name,
    type: type,
    location: location,
    comment: comment
  }.to_json(state)
end