Class: Prism::ClassVariableOperatorWriteNode

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 class 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) ⇒ ClassVariableOperatorWriteNode

Initialize a new ClassVariableOperatorWriteNode node.



4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
# File 'lib/prism/node.rb', line 4391

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



4476
4477
4478
# File 'lib/prism/node.rb', line 4476

def binary_operator
  @binary_operator
end

#nameObject (readonly)

attr_reader name: Symbol



4444
4445
4446
# File 'lib/prism/node.rb', line 4444

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



4473
4474
4475
# File 'lib/prism/node.rb', line 4473

def value
  @value
end

Class Method Details

.typeObject

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



4489
4490
4491
# File 'lib/prism/node.rb', line 4489

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



4495
4496
4497
4498
4499
4500
4501
4502
# File 'lib/prism/node.rb', line 4495

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



4404
4405
4406
# File 'lib/prism/node.rb', line 4404

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

#binary_operator_locObject

attr_reader binary_operator_loc: Location



4460
4461
4462
4463
4464
# File 'lib/prism/node.rb', line 4460

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



4409
4410
4411
# File 'lib/prism/node.rb', line 4409

def child_nodes
  [value]
end

#comment_targetsObject

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



4426
4427
4428
# File 'lib/prism/node.rb', line 4426

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



4421
4422
4423
# File 'lib/prism/node.rb', line 4421

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



4431
4432
4433
# File 'lib/prism/node.rb', line 4431

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



4439
4440
4441
# File 'lib/prism/node.rb', line 4439

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:



177
178
179
# File 'lib/prism/desugar_compiler.rb', line 177

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

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

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

Yields:



4414
4415
4416
4417
4418
# File 'lib/prism/node.rb', line 4414

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  yield value
end

#inspectObject

def inspect -> String



4479
4480
4481
# File 'lib/prism/node.rb', line 4479

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



4447
4448
4449
4450
4451
# File 'lib/prism/node.rb', line 4447

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.



358
359
360
361
# File 'lib/prism/node_ext.rb', line 358

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.



365
366
367
368
# File 'lib/prism/node_ext.rb', line 365

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.



4468
4469
4470
# File 'lib/prism/node.rb', line 4468

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.



4455
4456
4457
# File 'lib/prism/node.rb', line 4455

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

#typeObject

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



4484
4485
4486
# File 'lib/prism/node.rb', line 4484

def type
  :class_variable_operator_write_node
end