Class: Prism::ShareableConstantNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::ShareableConstantNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
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 }
^^^^^^^^^^^^
Instance Attribute Summary collapse
-
#write ⇒ Object
readonly
The constant write that should be modified with the shareability state.
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[nil | Node].
-
#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, write: self.write) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?write: ConstantWriteNode | ConstantAndWriteNode | ConstantOrWriteNode | ConstantOperatorWriteNode | ConstantPathWriteNode | ConstantPathAndWriteNode | ConstantPathOrWriteNode | ConstantPathOperatorWriteNode) -> ShareableConstantNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, write: ConstantWriteNode | ConstantAndWriteNode | ConstantOrWriteNode | ConstantOperatorWriteNode | ConstantPathWriteNode | ConstantPathAndWriteNode | ConstantPathOrWriteNode | ConstantPathOperatorWriteNode }.
-
#experimental_copy? ⇒ Boolean
def experimental_copy?: () -> bool.
-
#experimental_everything? ⇒ Boolean
def experimental_everything?: () -> bool.
-
#initialize(source, node_id, location, flags, write) ⇒ ShareableConstantNode
constructor
Initialize a new ShareableConstantNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#literal? ⇒ Boolean
def literal?: () -> bool.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, write) ⇒ ShareableConstantNode
Initialize a new ShareableConstantNode node.
16237 16238 16239 16240 16241 16242 16243 |
# File 'lib/prism/node.rb', line 16237 def initialize(source, node_id, location, flags, write) @source = source @node_id = node_id @location = location @flags = flags @write = write end |
Instance Attribute Details
#write ⇒ Object (readonly)
The constant write that should be modified with the shareability state.
16294 16295 16296 |
# File 'lib/prism/node.rb', line 16294 def write @write end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
16307 16308 16309 |
# File 'lib/prism/node.rb', line 16307 def self.type :shareable_constant_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.
16313 16314 16315 16316 16317 |
# File 'lib/prism/node.rb', line 16313 def ===(other) other.is_a?(ShareableConstantNode) && (flags === other.flags) && (write === other.write) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
16246 16247 16248 |
# File 'lib/prism/node.rb', line 16246 def accept(visitor) visitor.visit_shareable_constant_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
16251 16252 16253 |
# File 'lib/prism/node.rb', line 16251 def child_nodes [write] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
16261 16262 16263 |
# File 'lib/prism/node.rb', line 16261 def comment_targets [write] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
16256 16257 16258 |
# File 'lib/prism/node.rb', line 16256 def compact_child_nodes [write] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, write: self.write) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?write: ConstantWriteNode | ConstantAndWriteNode | ConstantOrWriteNode | ConstantOperatorWriteNode | ConstantPathWriteNode | ConstantPathAndWriteNode | ConstantPathOrWriteNode | ConstantPathOperatorWriteNode) -> ShareableConstantNode
16266 16267 16268 |
# File 'lib/prism/node.rb', line 16266 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 |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, write: ConstantWriteNode | ConstantAndWriteNode | ConstantOrWriteNode | ConstantOperatorWriteNode | ConstantPathWriteNode | ConstantPathAndWriteNode | ConstantPathOrWriteNode | ConstantPathOperatorWriteNode }
16274 16275 16276 |
# File 'lib/prism/node.rb', line 16274 def deconstruct_keys(keys) { node_id: node_id, location: location, write: write } end |
#experimental_copy? ⇒ Boolean
def experimental_copy?: () -> bool
16289 16290 16291 |
# File 'lib/prism/node.rb', line 16289 def experimental_copy? flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_COPY) end |
#experimental_everything? ⇒ Boolean
def experimental_everything?: () -> bool
16284 16285 16286 |
# File 'lib/prism/node.rb', line 16284 def experimental_everything? flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_EVERYTHING) end |
#inspect ⇒ Object
def inspect -> String
16297 16298 16299 |
# File 'lib/prism/node.rb', line 16297 def inspect InspectVisitor.compose(self) end |
#literal? ⇒ Boolean
def literal?: () -> bool
16279 16280 16281 |
# File 'lib/prism/node.rb', line 16279 def literal? flags.anybits?(ShareableConstantNodeFlags::LITERAL) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
16302 16303 16304 |
# File 'lib/prism/node.rb', line 16302 def type :shareable_constant_node end |