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.



11940
11941
11942
11943
11944
11945
11946
11947
11948
11949
11950
11951
# File 'lib/prism/node.rb', line 11940

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



12019
12020
12021
# File 'lib/prism/node.rb', line 12019

def binary_operator
  @binary_operator
end

#depthObject (readonly)

attr_reader depth: Integer



12022
12023
12024
# File 'lib/prism/node.rb', line 12022

def depth
  @depth
end

#nameObject (readonly)

attr_reader name: Symbol



12016
12017
12018
# File 'lib/prism/node.rb', line 12016

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



12013
12014
12015
# File 'lib/prism/node.rb', line 12013

def value
  @value
end

Class Method Details

.typeObject

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



12035
12036
12037
# File 'lib/prism/node.rb', line 12035

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.



12041
12042
12043
12044
12045
12046
12047
12048
12049
# File 'lib/prism/node.rb', line 12041

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



11954
11955
11956
# File 'lib/prism/node.rb', line 11954

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

#binary_operator_locObject

attr_reader binary_operator_loc: Location



12000
12001
12002
12003
12004
# File 'lib/prism/node.rb', line 12000

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



11959
11960
11961
# File 'lib/prism/node.rb', line 11959

def child_nodes
  [value]
end

#comment_targetsObject

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



11969
11970
11971
# File 'lib/prism/node.rb', line 11969

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



11964
11965
11966
# File 'lib/prism/node.rb', line 11964

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



11974
11975
11976
# File 'lib/prism/node.rb', line 11974

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 }



11982
11983
11984
# File 'lib/prism/node.rb', line 11982

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:



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

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



12025
12026
12027
# File 'lib/prism/node.rb', line 12025

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



11987
11988
11989
11990
11991
# File 'lib/prism/node.rb', line 11987

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.



454
455
456
457
# File 'lib/prism/node_ext.rb', line 454

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.



461
462
463
464
# File 'lib/prism/node_ext.rb', line 461

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.



12008
12009
12010
# File 'lib/prism/node.rb', line 12008

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.



11995
11996
11997
# File 'lib/prism/node.rb', line 11995

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

#typeObject

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



12030
12031
12032
# File 'lib/prism/node.rb', line 12030

def type
  :local_variable_operator_write_node
end