Class: Prism::InstanceVariableOrWriteNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
lib/prism/desugar_compiler.rb,
ext/prism/api_node.c

Overview

Represents the use of the ‘||=` operator for assignment to an instance variable.

@target ||= value
^^^^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, name, name_loc, operator_loc, value) ⇒ InstanceVariableOrWriteNode

Initialize a new InstanceVariableOrWriteNode node.



10728
10729
10730
10731
10732
10733
10734
10735
10736
10737
# File 'lib/prism/node.rb', line 10728

def initialize(source, node_id, location, flags, name, name_loc, operator_loc, value)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
  @name_loc = name_loc
  @operator_loc = operator_loc
  @value = value
end

Instance Attribute Details

#nameObject (readonly)

attr_reader name: Symbol



10780
10781
10782
# File 'lib/prism/node.rb', line 10780

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



10809
10810
10811
# File 'lib/prism/node.rb', line 10809

def value
  @value
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See Node::type.



10827
10828
10829
# File 'lib/prism/node.rb', line 10827

def self.type
  :instance_variable_or_write_node
end

Instance Method Details

#===(other) ⇒ Object

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.



10833
10834
10835
10836
10837
10838
10839
# File 'lib/prism/node.rb', line 10833

def ===(other)
  other.is_a?(InstanceVariableOrWriteNode) &&
    (name === other.name) &&
    (name_loc.nil? == other.name_loc.nil?) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (value === other.value)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



10740
10741
10742
# File 'lib/prism/node.rb', line 10740

def accept(visitor)
  visitor.visit_instance_variable_or_write_node(self)
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



10745
10746
10747
# File 'lib/prism/node.rb', line 10745

def child_nodes
  [value]
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



10762
10763
10764
# File 'lib/prism/node.rb', line 10762

def comment_targets
  [name_loc, operator_loc, value] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



10757
10758
10759
# File 'lib/prism/node.rb', line 10757

def compact_child_nodes
  [value]
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, operator_loc: self.operator_loc, value: self.value) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?operator_loc: Location, ?value: Prism::node) -> InstanceVariableOrWriteNode



10767
10768
10769
# File 'lib/prism/node.rb', line 10767

def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, operator_loc: self.operator_loc, value: self.value)
  InstanceVariableOrWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, operator_loc: Location, value: Prism::node }



10775
10776
10777
# File 'lib/prism/node.rb', line 10775

def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name, name_loc: name_loc, operator_loc: operator_loc, value: value }
end

#desugarObject

:nodoc:



225
226
227
# File 'lib/prism/desugar_compiler.rb', line 225

def desugar # :nodoc:
  DesugarOrWriteNode.new(self, source, :instance_variable_read_node, :instance_variable_write_node, name: name).compile
end

#each_child_node {|value| ... } ⇒ Object

def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator

Yields:



10750
10751
10752
10753
10754
# File 'lib/prism/node.rb', line 10750

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  yield value
end

#inspectObject

def inspect -> String



10817
10818
10819
# File 'lib/prism/node.rb', line 10817

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



10783
10784
10785
10786
10787
# File 'lib/prism/node.rb', line 10783

def name_loc
  location = @name_loc
  return location if location.is_a?(Location)
  @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#operatorObject

def operator: () -> String



10812
10813
10814
# File 'lib/prism/node.rb', line 10812

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



10796
10797
10798
10799
10800
# File 'lib/prism/node.rb', line 10796

def operator_loc
  location = @operator_loc
  return location if location.is_a?(Location)
  @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#save_name_loc(repository) ⇒ Object

Save the name_loc location using the given saved source so that it can be retrieved later.



10791
10792
10793
# File 'lib/prism/node.rb', line 10791

def save_name_loc(repository)
  repository.enter(node_id, :name_loc)
end

#save_operator_loc(repository) ⇒ Object

Save the operator_loc location using the given saved source so that it can be retrieved later.



10804
10805
10806
# File 'lib/prism/node.rb', line 10804

def save_operator_loc(repository)
  repository.enter(node_id, :operator_loc)
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



10822
10823
10824
# File 'lib/prism/node.rb', line 10822

def type
  :instance_variable_or_write_node
end