Class: RBS::AST::Members::AttrWriter

Inherits:
Base
  • Object
show all
Includes:
Attribute
Defined in:
lib/rbs/ast/members.rb

Instance Attribute Summary

Attributes included from Attribute

#annotations, #comment, #ivar_name, #kind, #location, #name, #type, #visibility

Instance Method Summary collapse

Methods included from Attribute

#==, #hash, #initialize, #update

Instance Method Details

#to_json(state = _ = nil) ⇒ Object



348
349
350
351
352
353
354
355
356
357
358
359
360
# File 'lib/rbs/ast/members.rb', line 348

def to_json(state = _ = nil)
  {
    member: :attr_writer,
    name: name,
    type: type,
    ivar_name: ivar_name,
    kind: kind,
    annotations: annotations,
    location: location,
    comment: comment,
    visibility: visibility
  }.to_json(state)
end