Class: RBI::AttrWriter

Inherits:
Attr show all
Defined in:
lib/rbi/model.rb,
lib/rbi/rewriters/merge_trees.rb,
lib/rbi/rewriters/attr_to_methods.rb

Instance Attribute Summary

Attributes inherited from Attr

#names, #sigs, #visibility

Attributes inherited from NodeWithComments

#comments

Attributes inherited from Node

#loc, #parent_tree

Instance Method Summary collapse

Methods inherited from Attr

#index_ids, #merge_with

Methods included from Indexable

#index_ids

Methods inherited from NodeWithComments

#annotations, #merge_with, #version_requirements

Methods inherited from Node

#detach, #merge_with, #parent_conflict_tree, #parent_scope, #print, #rbs_print, #rbs_string, #replace, #satisfies_version?, #string

Constructor Details

#initialize(name, *names, visibility: Public.new, sigs: [], loc: nil, comments: [], &block) ⇒ AttrWriter

: (Symbol name, *Symbol names, ?visibility: Visibility, ?sigs: Array, ?loc: Loc?, ?comments: Array) ?{ (AttrWriter node) -> void } -> void



361
362
363
364
# File 'lib/rbi/model.rb', line 361

def initialize(name, *names, visibility: Public.new, sigs: [], loc: nil, comments: [], &block)
  super(name, names, loc: loc, visibility: visibility, sigs: sigs, comments: comments)
  block&.call(self)
end

Instance Method Details

#compatible_with?(other) ⇒ Boolean

: (Node other) -> bool

Returns:

  • (Boolean)


433
434
435
# File 'lib/rbi/rewriters/merge_trees.rb', line 433

def compatible_with?(other)
  other.is_a?(AttrWriter) && super
end

#convert_to_methodsObject

: -> Array



148
149
150
151
152
# File 'lib/rbi/rewriters/attr_to_methods.rb', line 148

def convert_to_methods
  sig, attribute_type = parse_sig

  names.map { |name| create_setter_method(name.to_s, sig, attribute_type, visibility, loc, comments) }
end

#fully_qualified_namesObject

: -> Array



368
369
370
371
# File 'lib/rbi/model.rb', line 368

def fully_qualified_names
  parent_name = parent_scope&.fully_qualified_name
  names.map { |name| "#{parent_name}##{name}=" }
end

#to_sObject

: -> String



375
376
377
378
# File 'lib/rbi/model.rb', line 375

def to_s
  symbols = names.map { |name| ":#{name}" }.join(", ")
  "#{parent_scope&.fully_qualified_name}.attr_writer(#{symbols})"
end