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-3.4.1/lib/prism/node.rb, line 8737
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-3.4.1/lib/prism/node.rb, line 8792
def self.type
:implicit_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 8798
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-3.4.1/lib/prism/node.rb, line 8746
def accept(visitor)
visitor.visit_implicit_node(self)
end
def accept: (Visitor
visitor) -> void
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 8751
def child_nodes
[value]
end
def child_nodes
: () -> Array[nil | Node]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 8761
def comment_targets
[value] #: Array[Prism::node | Location]
end
def comment_targets
: () -> Array[Node | Location]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 8756
def compact_child_nodes
[value]
end
def compact_child_nodes
: () -> Array
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 8766
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-3.4.1/lib/prism/node.rb, line 8774
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-3.4.1/lib/prism/node.rb, line 8782
def inspect
InspectVisitor.compose(self)
end
def inspect -> String
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 8787
def type
:implicit_node
end
Return a symbol representation of this node type. See ‘Node#type`.