Class: Prism::InstanceVariableOperatorWriteNode

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

Overview

Represents assigning to an instance variable using an operator that isn’t ‘=`.

@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, binary_operator_loc, value, binary_operator) ⇒ InstanceVariableOperatorWriteNode

Initialize a new InstanceVariableOperatorWriteNode node.



10608
10609
10610
10611
10612
10613
10614
10615
10616
10617
10618
# File 'lib/prism/node.rb', line 10608

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

Instance Attribute Details

#binary_operatorObject (readonly)

attr_reader binary_operator: Symbol



10693
10694
10695
# File 'lib/prism/node.rb', line 10693

def binary_operator
  @binary_operator
end

#nameObject (readonly)

attr_reader name: Symbol



10661
10662
10663
# File 'lib/prism/node.rb', line 10661

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



10690
10691
10692
# File 'lib/prism/node.rb', line 10690

def value
  @value
end

Class Method Details

.typeObject

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



10706
10707
10708
# File 'lib/prism/node.rb', line 10706

def self.type
  :instance_variable_operator_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.



10712
10713
10714
10715
10716
10717
10718
10719
# File 'lib/prism/node.rb', line 10712

def ===(other)
  other.is_a?(InstanceVariableOperatorWriteNode) &&
    (name === other.name) &&
    (name_loc.nil? == other.name_loc.nil?) &&
    (binary_operator_loc.nil? == other.binary_operator_loc.nil?) &&
    (value === other.value) &&
    (binary_operator === other.binary_operator)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



10621
10622
10623
# File 'lib/prism/node.rb', line 10621

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

#binary_operator_locObject

attr_reader binary_operator_loc: Location



10677
10678
10679
10680
10681
# File 'lib/prism/node.rb', line 10677

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



10626
10627
10628
# File 'lib/prism/node.rb', line 10626

def child_nodes
  [value]
end

#comment_targetsObject

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



10643
10644
10645
# File 'lib/prism/node.rb', line 10643

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



10638
10639
10640
# File 'lib/prism/node.rb', line 10638

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, binary_operator_loc: self.binary_operator_loc, value: self.value, binary_operator: self.binary_operator) ⇒ Object

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



10648
10649
10650
# File 'lib/prism/node.rb', line 10648

def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, binary_operator_loc: self.binary_operator_loc, value: self.value, binary_operator: self.binary_operator)
  InstanceVariableOperatorWriteNode.new(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator)
end

#deconstruct_keys(keys) ⇒ Object

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



10656
10657
10658
# File 'lib/prism/node.rb', line 10656

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

#desugarObject

:nodoc:



231
232
233
# File 'lib/prism/desugar_compiler.rb', line 231

def desugar # :nodoc:
  DesugarOperatorWriteNode.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:



10631
10632
10633
10634
10635
# File 'lib/prism/node.rb', line 10631

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  yield value
end

#inspectObject

def inspect -> String



10696
10697
10698
# File 'lib/prism/node.rb', line 10696

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



10664
10665
10666
10667
10668
# File 'lib/prism/node.rb', line 10664

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

#operatorObject

Returns the binary operator used to modify the receiver. This method is deprecated in favor of #binary_operator.



438
439
440
441
# File 'lib/prism/node_ext.rb', line 438

def operator
  deprecated("binary_operator")
  binary_operator
end

#operator_locObject

Returns the location of the binary operator used to modify the receiver. This method is deprecated in favor of #binary_operator_loc.



445
446
447
448
# File 'lib/prism/node_ext.rb', line 445

def operator_loc
  deprecated("binary_operator_loc")
  binary_operator_loc
end

#save_binary_operator_loc(repository) ⇒ Object

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



10685
10686
10687
# File 'lib/prism/node.rb', line 10685

def save_binary_operator_loc(repository)
  repository.enter(node_id, :binary_operator_loc)
end

#save_name_loc(repository) ⇒ Object

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



10672
10673
10674
# File 'lib/prism/node.rb', line 10672

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

#typeObject

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



10701
10702
10703
# File 'lib/prism/node.rb', line 10701

def type
  :instance_variable_operator_write_node
end