Class: Prism::LocalVariableOperatorWriteNode

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 a local 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_loc, binary_operator_loc, value, name, binary_operator, depth) ⇒ LocalVariableOperatorWriteNode

Initialize a new LocalVariableOperatorWriteNode node.



11801
11802
11803
11804
11805
11806
11807
11808
11809
11810
11811
11812
# File 'lib/prism/node.rb', line 11801

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

Instance Attribute Details

#binary_operatorObject (readonly)

attr_reader binary_operator: Symbol



11880
11881
11882
# File 'lib/prism/node.rb', line 11880

def binary_operator
  @binary_operator
end

#depthObject (readonly)

attr_reader depth: Integer



11883
11884
11885
# File 'lib/prism/node.rb', line 11883

def depth
  @depth
end

#nameObject (readonly)

attr_reader name: Symbol



11877
11878
11879
# File 'lib/prism/node.rb', line 11877

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



11874
11875
11876
# File 'lib/prism/node.rb', line 11874

def value
  @value
end

Class Method Details

.typeObject

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



11896
11897
11898
# File 'lib/prism/node.rb', line 11896

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



11902
11903
11904
11905
11906
11907
11908
11909
11910
# File 'lib/prism/node.rb', line 11902

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

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



11815
11816
11817
# File 'lib/prism/node.rb', line 11815

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

#binary_operator_locObject

attr_reader binary_operator_loc: Location



11861
11862
11863
11864
11865
# File 'lib/prism/node.rb', line 11861

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]



11820
11821
11822
# File 'lib/prism/node.rb', line 11820

def child_nodes
  [value]
end

#comment_targetsObject

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



11830
11831
11832
# File 'lib/prism/node.rb', line 11830

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



11825
11826
11827
# File 'lib/prism/node.rb', line 11825

def compact_child_nodes
  [value]
end

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

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



11835
11836
11837
# File 'lib/prism/node.rb', line 11835

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

#deconstruct_keys(keys) ⇒ Object

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



11843
11844
11845
# File 'lib/prism/node.rb', line 11843

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

#desugarObject

:nodoc:



248
249
250
# File 'lib/prism/desugar_compiler.rb', line 248

def desugar # :nodoc:
  DesugarOperatorWriteNode.new(self, source, :local_variable_read_node, :local_variable_write_node, name: name, depth: depth).compile
end

#inspectObject

def inspect -> String



11886
11887
11888
# File 'lib/prism/node.rb', line 11886

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



11848
11849
11850
11851
11852
# File 'lib/prism/node.rb', line 11848

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.



451
452
453
454
# File 'lib/prism/node_ext.rb', line 451

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.



458
459
460
461
# File 'lib/prism/node_ext.rb', line 458

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.



11869
11870
11871
# File 'lib/prism/node.rb', line 11869

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.



11856
11857
11858
# File 'lib/prism/node.rb', line 11856

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

#typeObject

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



11891
11892
11893
# File 'lib/prism/node.rb', line 11891

def type
  :local_variable_operator_write_node
end