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 } ^^^^^^^^^^^^
The constant write that should be modified with the shareability state.
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16205
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.
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16275
def self.type
:shareable_constant_node
end
Return a symbol representation of this node type. See ‘Node::type`.
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16281
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.
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16214
def accept(visitor)
visitor.visit_shareable_constant_node(self)
end
def accept: (Visitor
visitor) -> void
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16219
def child_nodes
[write]
end
def child_nodes
: () -> Array[nil | Node]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16229
def comment_targets
[write] #: Array[Prism::node | Location]
end
def comment_targets
: () -> Array[Node | Location]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16224
def compact_child_nodes
[write]
end
def compact_child_nodes
: () -> Array
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16234
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
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16242
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
}
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16257
def experimental_copy?
flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_COPY)
end
def experimental_copy?: () -> bool
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16252
def experimental_everything?
flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_EVERYTHING)
end
def experimental_everything?: () -> bool
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16265
def inspect
InspectVisitor.compose(self)
end
def inspect -> String
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16247
def literal?
flags.anybits?(ShareableConstantNodeFlags::LITERAL)
end
def literal?: () -> bool
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 16270
def type
:shareable_constant_node
end
Return a symbol representation of this node type. See ‘Node#type`.