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.



9883
9884
9885
9886
9887
9888
9889
9890
9891
9892
9893
# File 'lib/prism/node.rb', line 9883

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



9961
9962
9963
# File 'lib/prism/node.rb', line 9961

def binary_operator
  @binary_operator
end

#nameObject (readonly)

attr_reader name: Symbol



9929
9930
9931
# File 'lib/prism/node.rb', line 9929

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



9958
9959
9960
# File 'lib/prism/node.rb', line 9958

def value
  @value
end

Class Method Details

.typeObject

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



9974
9975
9976
# File 'lib/prism/node.rb', line 9974

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.



9980
9981
9982
9983
9984
9985
9986
9987
# File 'lib/prism/node.rb', line 9980

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



9896
9897
9898
# File 'lib/prism/node.rb', line 9896

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

#binary_operator_locObject

attr_reader binary_operator_loc: Location



9945
9946
9947
9948
9949
# File 'lib/prism/node.rb', line 9945

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[nil | Node]



9901
9902
9903
# File 'lib/prism/node.rb', line 9901

def child_nodes
  [value]
end

#comment_targetsObject

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



9911
9912
9913
# File 'lib/prism/node.rb', line 9911

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



9906
9907
9908
# File 'lib/prism/node.rb', line 9906

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



9916
9917
9918
# File 'lib/prism/node.rb', line 9916

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 }



9924
9925
9926
# File 'lib/prism/node.rb', line 9924

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:



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

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

#inspectObject

def inspect -> String



9964
9965
9966
# File 'lib/prism/node.rb', line 9964

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



9932
9933
9934
9935
9936
# File 'lib/prism/node.rb', line 9932

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.



435
436
437
438
# File 'lib/prism/node_ext.rb', line 435

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.



442
443
444
445
# File 'lib/prism/node_ext.rb', line 442

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.



9953
9954
9955
# File 'lib/prism/node.rb', line 9953

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.



9940
9941
9942
# File 'lib/prism/node.rb', line 9940

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

#typeObject

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



9969
9970
9971
# File 'lib/prism/node.rb', line 9969

def type
  :instance_variable_operator_write_node
end