Class: Prism::ConstantPathOrWriteNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::ConstantPathOrWriteNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the use of the ‘||=` operator for assignment to a constant path.
Parent::Child ||= value
^^^^^^^^^^^^^^^^^^^^^^^
Instance Attribute Summary collapse
-
#target ⇒ Object
readonly
attr_reader target: ConstantPathNode.
-
#value ⇒ Object
readonly
attr_reader value: Prism::node.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#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) -> ConstantPathOrWriteNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, target: ConstantPathNode, operator_loc: Location, value: Prism::node }.
-
#initialize(source, node_id, location, flags, target, operator_loc, value) ⇒ ConstantPathOrWriteNode
constructor
Initialize a new ConstantPathOrWriteNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#operator ⇒ Object
def operator: () -> String.
-
#operator_loc ⇒ Object
attr_reader operator_loc: Location.
-
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, target, operator_loc, value) ⇒ ConstantPathOrWriteNode
Initialize a new ConstantPathOrWriteNode node.
5309 5310 5311 5312 5313 5314 5315 5316 5317 |
# File 'lib/prism/node.rb', line 5309 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
#target ⇒ Object (readonly)
attr_reader target: ConstantPathNode
5353 5354 5355 |
# File 'lib/prism/node.rb', line 5353 def target @target end |
#value ⇒ Object (readonly)
attr_reader value: Prism::node
5369 5370 5371 |
# File 'lib/prism/node.rb', line 5369 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
5387 5388 5389 |
# File 'lib/prism/node.rb', line 5387 def self.type :constant_path_or_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.
5393 5394 5395 5396 5397 5398 |
# File 'lib/prism/node.rb', line 5393 def ===(other) other.is_a?(ConstantPathOrWriteNode) && (target === other.target) && (operator_loc.nil? == other.operator_loc.nil?) && (value === other.value) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
5320 5321 5322 |
# File 'lib/prism/node.rb', line 5320 def accept(visitor) visitor.visit_constant_path_or_write_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
5325 5326 5327 |
# File 'lib/prism/node.rb', line 5325 def child_nodes [target, value] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
5335 5336 5337 |
# File 'lib/prism/node.rb', line 5335 def comment_targets [target, operator_loc, value] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
5330 5331 5332 |
# File 'lib/prism/node.rb', line 5330 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) -> ConstantPathOrWriteNode
5340 5341 5342 |
# File 'lib/prism/node.rb', line 5340 def copy(node_id: self.node_id, location: self.location, flags: self.flags, target: self.target, operator_loc: self.operator_loc, value: self.value) ConstantPathOrWriteNode.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 }
5348 5349 5350 |
# File 'lib/prism/node.rb', line 5348 def deconstruct_keys(keys) { node_id: node_id, location: location, target: target, operator_loc: operator_loc, value: value } end |
#inspect ⇒ Object
def inspect -> String
5377 5378 5379 |
# File 'lib/prism/node.rb', line 5377 def inspect InspectVisitor.compose(self) end |
#operator ⇒ Object
def operator: () -> String
5372 5373 5374 |
# File 'lib/prism/node.rb', line 5372 def operator operator_loc.slice end |
#operator_loc ⇒ Object
attr_reader operator_loc: Location
5356 5357 5358 5359 5360 |
# File 'lib/prism/node.rb', line 5356 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.
5364 5365 5366 |
# File 'lib/prism/node.rb', line 5364 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
5382 5383 5384 |
# File 'lib/prism/node.rb', line 5382 def type :constant_path_or_write_node end |