class Prism::ConstantPathOrWriteNode
Represents the use of the||= operator for assignment to a constant path.
Parent::Child ||= value^^^^^^^^^^^^^^^^^^^^^^^
Attributes
attr_reader target:ConstantPathNode
attr_reader value: Prism::node
Public Class Methods
Source
# File lib/prism/node.rb, line 5341definitialize(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 =valueend
Initialize a newConstantPathOrWriteNode node.
Source
# File lib/prism/node.rb, line 5419defself.type:constant_path_or_write_nodeend
Return a symbol representation of this node type. SeeNode::type.
Public Instance Methods
Source
# File lib/prism/node.rb, line 5425def===(other)other.is_a?(ConstantPathOrWriteNode)&& (target===other.target)&& (operator_loc.nil?==other.operator_loc.nil?)&& (value===other.value)end
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
Source
# File lib/prism/node.rb, line 5352defaccept(visitor)visitor.visit_constant_path_or_write_node(self)end
def accept: (Visitor visitor) -> void
Source
# File lib/prism/node.rb, line 5357defchild_nodes [target,value]end
defchild_nodes: () ->Array
Source
# File lib/prism/node.rb, line 5367defcomment_targets [target,operator_loc,value]#: Array[Prism::node | Location]end
defcomment_targets: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 5362defcompact_child_nodes [target,value]end
defcompact_child_nodes: () ->Array
Source
# File lib/prism/node.rb, line 5372defcopy(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
def copy: (?node_id:Integer, ?location:Location, ?flags:Integer, ?target:ConstantPathNode, ?operator_loc:Location, ?value: Prism::node) ->ConstantPathOrWriteNode
Source
# File lib/prism/node.rb, line 5380defdeconstruct_keys(keys) {node_id:node_id,location:location,target:target,operator_loc:operator_loc,value:value }end
defdeconstruct_keys: (Array keys) -> { node_id:Integer, location:Location, target:ConstantPathNode,operator_loc:Location, value: Prism::node }
Source
# File lib/prism/node.rb, line 5409definspectInspectVisitor.compose(self)end
def inspect ->String
Source
# File lib/prism/node.rb, line 5404defoperatoroperator_loc.sliceend
def operator: () ->String
Source
# File lib/prism/node.rb, line 5388defoperator_loclocation =@operator_locreturnlocationiflocation.is_a?(Location)@operator_loc =Location.new(source,location>>32,location&0xFFFFFFFF)end
attr_readeroperator_loc:Location
Source
# File lib/prism/node.rb, line 5396defsave_operator_loc(repository)repository.enter(node_id,:operator_loc)end
Save theoperator_loc location using the given saved source so that it can be retrieved later.