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
Initialize a new ShareableConstantNode
node.
# File lib/prism/node.rb, line 15947 def initialize(source, node_id, location, flags, write) @source = source @node_id = node_id @location = location @flags = flags @write = write end
Return a symbol representation of this node type. See Node::type
.
# File lib/prism/node.rb, line 16017 def self.type :shareable_constant_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File lib/prism/node.rb, line 16023 def ===(other) other.is_a?(ShareableConstantNode) && (flags === other.flags) && (write === other.write) end
def accept: (Visitor
visitor) -> void
# File lib/prism/node.rb, line 15956 def accept(visitor) visitor.visit_shareable_constant_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File lib/prism/node.rb, line 15961 def child_nodes [write] end
def comment_targets
: () -> Array[Node | Location]
# File lib/prism/node.rb, line 15971 def comment_targets [write] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File lib/prism/node.rb, line 15966 def compact_child_nodes [write] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?write: ConstantWriteNode
| ConstantAndWriteNode
| ConstantOrWriteNode
| ConstantOperatorWriteNode
| ConstantPathWriteNode
| ConstantPathAndWriteNode
| ConstantPathOrWriteNode
| ConstantPathOperatorWriteNode
) -> ShareableConstantNode
# File lib/prism/node.rb, line 15976 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 deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, write: ConstantWriteNode
| ConstantAndWriteNode
| ConstantOrWriteNode
| ConstantOperatorWriteNode
| ConstantPathWriteNode
| ConstantPathAndWriteNode
| ConstantPathOrWriteNode
| ConstantPathOperatorWriteNode
}
# File lib/prism/node.rb, line 15984 def deconstruct_keys(keys) { node_id: node_id, location: location, write: write } end
def experimental_copy?: () -> bool
# File lib/prism/node.rb, line 15999 def experimental_copy? flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_COPY) end
def experimental_everything?: () -> bool
# File lib/prism/node.rb, line 15994 def experimental_everything? flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_EVERYTHING) end
def inspect -> String
# File lib/prism/node.rb, line 16007 def inspect InspectVisitor.compose(self) end
def literal?: () -> bool
# File lib/prism/node.rb, line 15989 def literal? flags.anybits?(ShareableConstantNodeFlags::LITERAL) end
Return a symbol representation of this node type. See Node#type
.
# File lib/prism/node.rb, line 16012 def type :shareable_constant_node end