Class: Prism::ConstantPathWriteNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents writing to a constant path.

::Foo = 1
^^^^^^^^^

Foo::Bar = 1
^^^^^^^^^^^^

::Foo::Bar = 1
^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, target, operator_loc, value) ⇒ ConstantPathWriteNode

Initialize a new ConstantPathWriteNode node.



5560
5561
5562
5563
5564
5565
5566
5567
5568
# File 'lib/prism/node.rb', line 5560

def initialize(source, node_id, location, flags, target, operator_loc, value)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @target = target
  @operator_loc = operator_loc
  @value = value
end

Instance Attribute Details

#targetObject (readonly)

A node representing the constant path being written to.

Foo::Bar = 1
^^^^^^^^

::Foo = :abc
^^^^^


5610
5611
5612
# File 'lib/prism/node.rb', line 5610

def target
  @target
end

#valueObject (readonly)

The value to write to the constant path. It can be any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

FOO::BAR = :abc
           ^^^^


5632
5633
5634
# File 'lib/prism/node.rb', line 5632

def value
  @value
end

Class Method Details

.typeObject

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



5650
5651
5652
# File 'lib/prism/node.rb', line 5650

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



5656
5657
5658
5659
5660
5661
# File 'lib/prism/node.rb', line 5656

def ===(other)
  other.is_a?(ConstantPathWriteNode) &&
    (target === other.target) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (value === other.value)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



5571
5572
5573
# File 'lib/prism/node.rb', line 5571

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



5576
5577
5578
# File 'lib/prism/node.rb', line 5576

def child_nodes
  [target, value]
end

#comment_targetsObject

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



5586
5587
5588
# File 'lib/prism/node.rb', line 5586

def comment_targets
  [target, operator_loc, value] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



5581
5582
5583
# File 'lib/prism/node.rb', line 5581

def compact_child_nodes
  [target, value]
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, target: self.target, operator_loc: self.operator_loc, value: self.value) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?target: ConstantPathNode, ?operator_loc: Location, ?value: Prism::node) -> ConstantPathWriteNode



5591
5592
5593
# File 'lib/prism/node.rb', line 5591

def copy(node_id: self.node_id, location: self.location, flags: self.flags, target: self.target, operator_loc: self.operator_loc, value: self.value)
  ConstantPathWriteNode.new(source, node_id, location, flags, target, operator_loc, value)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, target: ConstantPathNode, operator_loc: Location, value: Prism::node }



5599
5600
5601
# File 'lib/prism/node.rb', line 5599

def deconstruct_keys(keys)
  { node_id: node_id, location: location, target: target, operator_loc: operator_loc, value: value }
end

#inspectObject

def inspect -> String



5640
5641
5642
# File 'lib/prism/node.rb', line 5640

def inspect
  InspectVisitor.compose(self)
end

#operatorObject

def operator: () -> String



5635
5636
5637
# File 'lib/prism/node.rb', line 5635

def operator
  operator_loc.slice
end

#operator_locObject

The location of the ‘=` operator.

::ABC = 123
      ^


5616
5617
5618
5619
5620
# File 'lib/prism/node.rb', line 5616

def operator_loc
  location = @operator_loc
  return location if location.is_a?(Location)
  @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#save_operator_loc(repository) ⇒ Object

Save the operator_loc location using the given saved source so that it can be retrieved later.



5624
5625
5626
# File 'lib/prism/node.rb', line 5624

def save_operator_loc(repository)
  repository.enter(node_id, :operator_loc)
end

#typeObject

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



5645
5646
5647
# File 'lib/prism/node.rb', line 5645

def type
  :constant_path_write_node
end