Class: Prism::ShareableConstantNode

Inherits:
PrismNode
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, write) ⇒ ShareableConstantNode

Initialize a new ShareableConstantNode node.



14651
14652
14653
14654
14655
14656
14657
# File 'lib/prism/node.rb', line 14651

def initialize(source, node_id, location, flags, write)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @write = write
end

Instance Attribute Details

#writeObject (readonly)

The constant write that should be modified with the shareability state.



14708
14709
14710
# File 'lib/prism/node.rb', line 14708

def write
  @write
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



14721
14722
14723
# File 'lib/prism/node.rb', line 14721

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.



14727
14728
14729
14730
14731
# File 'lib/prism/node.rb', line 14727

def ===(other)
  other.is_a?(ShareableConstantNode) &&
    (flags === other.flags) &&
    (write === other.write)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



14660
14661
14662
# File 'lib/prism/node.rb', line 14660

def accept(visitor)
  visitor.visit_shareable_constant_node(self)
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



14665
14666
14667
# File 'lib/prism/node.rb', line 14665

def child_nodes
  [write]
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



14675
14676
14677
# File 'lib/prism/node.rb', line 14675

def comment_targets
  [write] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



14670
14671
14672
# File 'lib/prism/node.rb', line 14670

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



14680
14681
14682
# File 'lib/prism/node.rb', line 14680

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 }



14688
14689
14690
# File 'lib/prism/node.rb', line 14688

def deconstruct_keys(keys)
  { node_id: node_id, location: location, write: write }
end

#experimental_copy?Boolean

def experimental_copy?: () -> bool

Returns:

  • (Boolean)


14703
14704
14705
# File 'lib/prism/node.rb', line 14703

def experimental_copy?
  flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_COPY)
end

#experimental_everything?Boolean

def experimental_everything?: () -> bool

Returns:

  • (Boolean)


14698
14699
14700
# File 'lib/prism/node.rb', line 14698

def experimental_everything?
  flags.anybits?(ShareableConstantNodeFlags::EXPERIMENTAL_EVERYTHING)
end

#inspectObject

def inspect -> String



14711
14712
14713
# File 'lib/prism/node.rb', line 14711

def inspect
  InspectVisitor.compose(self)
end

#literal?Boolean

def literal?: () -> bool

Returns:

  • (Boolean)


14693
14694
14695
# File 'lib/prism/node.rb', line 14693

def literal?
  flags.anybits?(ShareableConstantNodeFlags::LITERAL)
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



14716
14717
14718
# File 'lib/prism/node.rb', line 14716

def type
  :shareable_constant_node
end