class Prism::ImplicitNode
Represents a node that is implicitly being added to the tree but doesn’t correspond directly to a node in the source.
{ foo: }
^^^^
{ Foo: }
^^^^
foo in { bar: }
^^^^
Attributes
attr_reader value: LocalVariableReadNode | CallNode | ConstantReadNode | LocalVariableTargetNode
Public Class Methods
Source
# File lib/prism/node.rb, line 8871 def initialize(source, node_id, location, flags, value) @source = source @node_id = node_id @location = location @flags = flags @value = value end
Initialize a new ImplicitNode node.
Source
# File lib/prism/node.rb, line 8926 def self.type :implicit_node end
Return a symbol representation of this node type. See Node::type.
Public Instance Methods
Source
# File lib/prism/node.rb, line 8932 def ===(other) other.is_a?(ImplicitNode) && (value === other.value) 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 8880 def accept(visitor) visitor.visit_implicit_node(self) end
def accept: (Visitor visitor) -> void
Source
# File lib/prism/node.rb, line 8885 def child_nodes [value] end
def child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 8895 def comment_targets [value] #: Array[Prism::node | Location] end
def comment_targets: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 8890 def compact_child_nodes [value] end
def compact_child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 8900 def copy(node_id: self.node_id, location: self.location, flags: self.flags, value: self.value) ImplicitNode.new(source, node_id, location, flags, value) end
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?value: LocalVariableReadNode | CallNode | ConstantReadNode | LocalVariableTargetNode) -> ImplicitNode
Source
# File lib/prism/node.rb, line 8908 def deconstruct_keys(keys) { node_id: node_id, location: location, value: value } end
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, value: LocalVariableReadNode | CallNode | ConstantReadNode | LocalVariableTargetNode }
Source
# File lib/prism/node.rb, line 8916 def inspect InspectVisitor.compose(self) end
def inspect -> String