class Prism::ShareableConstantNode
This node wraps a constant write to indicate that when the value is written, it should have its shareability state modified.
# shareable_constant_value: literal
C = { a: 1 }
^^^^^^^^^^^^
Attributes
The constant write that should be modified with the shareability state.
Public Class Methods
Source
# File lib/prism/node.rb, line 16408 def initialize(source, node_id, location, flags, write) @source = source @node_id = node_id @location = location @flags = flags @write = write end
Initialize a new ShareableConstantNode node.
Source
# File lib/prism/node.rb, line 16478 def self.type :shareable_constant_node end
Return a symbol representation of this node type. See Node::type.
Public Instance Methods
Source
# File lib/prism/node.rb, line 16484 def ===(other) other.is_a?(ShareableConstantNode) && (flags === other.flags) && (write === other.write) 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 16417 def accept(visitor) visitor.visit_shareable_constant_node(self) end
def accept: (Visitor visitor) -> void
Source
# File lib/prism/node.rb, line 16422 def child_nodes [write] end
def child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 16432 def comment_targets [write] #: Array[Prism::node | Location] end
def comment_targets: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 16427 def compact_child_nodes [write] end
def compact_child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 16437 def copy(node_id: self.node_id, location: self.location, flags: self.flags, write: self.write) ShareableConstantNode.new(source, node_id, location, flags, write) end
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?write: ConstantWriteNode | ConstantAndWriteNode | ConstantOrWriteNode | ConstantOperatorWriteNode | ConstantPathWriteNode | ConstantPathAndWriteNode | ConstantPathOrWriteNode | ConstantPathOperatorWriteNode) -> ShareableConstantNode
Source
# File lib/prism/node.rb, line 16445 def deconstruct_keys(keys) { node_id: node_id, location: location, write: write } end
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, write: ConstantWriteNode | ConstantAndWriteNode | ConstantOrWriteNode | ConstantOperatorWriteNode | ConstantPathWriteNode | ConstantPathAndWriteNode | ConstantPathOrWriteNode | ConstantPathOperatorWriteNode }
Source
# File lib/prism/node.rb, line 16460 def experimental_copy? flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_COPY) end
def experimental_copy?: () -> bool
Source
# File lib/prism/node.rb, line 16455 def experimental_everything? flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_EVERYTHING) end
def experimental_everything?: () -> bool
Source
# File lib/prism/node.rb, line 16468 def inspect InspectVisitor.compose(self) end
def inspect -> String
Source
# File lib/prism/node.rb, line 16450 def literal? flags.anybits?(ShareableConstantNodeFlags::LITERAL) end
def literal?: () -> bool