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.



8893
8894
8895
8896
8897
8898
8899
8900
8901
8902
# File 'lib/prism/node.rb', line 8893

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



8938
8939
8940
# File 'lib/prism/node.rb', line 8938

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



8955
8956
8957
# File 'lib/prism/node.rb', line 8955

def value
  @value
end

Class Method Details

.typeObject

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



8973
8974
8975
# File 'lib/prism/node.rb', line 8973

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.



8979
8980
8981
8982
8983
8984
8985
# File 'lib/prism/node.rb', line 8979

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



8905
8906
8907
# File 'lib/prism/node.rb', line 8905

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



8910
8911
8912
# File 'lib/prism/node.rb', line 8910

def child_nodes
  [value]
end

#comment_targetsObject

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



8920
8921
8922
# File 'lib/prism/node.rb', line 8920

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



8915
8916
8917
# File 'lib/prism/node.rb', line 8915

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



8925
8926
8927
# File 'lib/prism/node.rb', line 8925

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 }



8933
8934
8935
# File 'lib/prism/node.rb', line 8933

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:



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

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

#inspectObject

def inspect -> String



8963
8964
8965
# File 'lib/prism/node.rb', line 8963

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



8941
8942
8943
8944
8945
# File 'lib/prism/node.rb', line 8941

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



8958
8959
8960
# File 'lib/prism/node.rb', line 8958

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



8948
8949
8950
8951
8952
# File 'lib/prism/node.rb', line 8948

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

#typeObject

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



8968
8969
8970
# File 'lib/prism/node.rb', line 8968

def type
  :instance_variable_or_write_node
end