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: }
^^^^
attr_reader value: LocalVariableReadNode | CallNode | ConstantReadNode | LocalVariableTargetNode
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8876
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.
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8931
def self.type
:implicit_node
end
Return a symbol representation of this node type. See Node::type.
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8937
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.
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8885
def accept(visitor)
visitor.visit_implicit_node(self)
end
def accept: (Visitor visitor) -> void
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8890
def child_nodes
[value]
end
def child_nodes: () -> Array
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8900
def comment_targets
[value] #: Array[Prism::node | Location]
end
def comment_targets: () -> Array[Node | Location]
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8895
def compact_child_nodes
[value]
end
def compact_child_nodes: () -> Array
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8905
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
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8913
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 }
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8921
def inspect
InspectVisitor.compose(self)
end
def inspect -> String
# File tmp/rubies/ruby-4.0.0/lib/prism/node.rb, line 8926
def type
:implicit_node
end
Return a symbol representation of this node type. See Node#type.