Class: Prism::ConstantOperatorWriteNode

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 constant 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) ⇒ ConstantOperatorWriteNode

Initialize a new ConstantOperatorWriteNode node.



5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
# File 'lib/prism/node.rb', line 5049

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



5134
5135
5136
# File 'lib/prism/node.rb', line 5134

def binary_operator
  @binary_operator
end

#nameObject (readonly)

attr_reader name: Symbol



5102
5103
5104
# File 'lib/prism/node.rb', line 5102

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



5131
5132
5133
# File 'lib/prism/node.rb', line 5131

def value
  @value
end

Class Method Details

.typeObject

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



5147
5148
5149
# File 'lib/prism/node.rb', line 5147

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



5153
5154
5155
5156
5157
5158
5159
5160
# File 'lib/prism/node.rb', line 5153

def ===(other)
  other.is_a?(ConstantOperatorWriteNode) &&
    (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



5062
5063
5064
# File 'lib/prism/node.rb', line 5062

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

#binary_operator_locObject

attr_reader binary_operator_loc: Location



5118
5119
5120
5121
5122
# File 'lib/prism/node.rb', line 5118

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



5067
5068
5069
# File 'lib/prism/node.rb', line 5067

def child_nodes
  [value]
end

#comment_targetsObject

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



5084
5085
5086
# File 'lib/prism/node.rb', line 5084

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



5079
5080
5081
# File 'lib/prism/node.rb', line 5079

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) -> ConstantOperatorWriteNode



5089
5090
5091
# File 'lib/prism/node.rb', line 5089

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)
  ConstantOperatorWriteNode.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 }



5097
5098
5099
# File 'lib/prism/node.rb', line 5097

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:



195
196
197
# File 'lib/prism/desugar_compiler.rb', line 195

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

#each_child_node {|value| ... } ⇒ Object

def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator

Yields:



5072
5073
5074
5075
5076
# File 'lib/prism/node.rb', line 5072

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  yield value
end

#inspectObject

def inspect -> String



5137
5138
5139
# File 'lib/prism/node.rb', line 5137

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



5105
5106
5107
5108
5109
# File 'lib/prism/node.rb', line 5105

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.



374
375
376
377
# File 'lib/prism/node_ext.rb', line 374

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.



381
382
383
384
# File 'lib/prism/node_ext.rb', line 381

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.



5126
5127
5128
# File 'lib/prism/node.rb', line 5126

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.



5113
5114
5115
# File 'lib/prism/node.rb', line 5113

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

#typeObject

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



5142
5143
5144
# File 'lib/prism/node.rb', line 5142

def type
  :constant_operator_write_node
end