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
Initialize a new ImplicitNode
node.
# File lib/prism/node.rb, line 8479 def initialize(source, node_id, location, flags, value) @source = source @node_id = node_id @location = location @flags = flags @value = value end
Return a symbol representation of this node type. See Node::type
.
# File lib/prism/node.rb, line 8534 def self.type :implicit_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File lib/prism/node.rb, line 8540 def ===(other) other.is_a?(ImplicitNode) && (value === other.value) end
def accept: (Visitor
visitor) -> void
# File lib/prism/node.rb, line 8488 def accept(visitor) visitor.visit_implicit_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File lib/prism/node.rb, line 8493 def child_nodes [value] end
def comment_targets
: () -> Array[Node | Location]
# File lib/prism/node.rb, line 8503 def comment_targets [value] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File lib/prism/node.rb, line 8498 def compact_child_nodes [value] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?value: LocalVariableReadNode
| CallNode
| ConstantReadNode
| LocalVariableTargetNode
) -> ImplicitNode
# File lib/prism/node.rb, line 8508 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 deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, value: LocalVariableReadNode
| CallNode
| ConstantReadNode
| LocalVariableTargetNode
}
# File lib/prism/node.rb, line 8516 def deconstruct_keys(keys) { node_id: node_id, location: location, value: value } end
def inspect -> String
# File lib/prism/node.rb, line 8524 def inspect InspectVisitor.compose(self) end
Return a symbol representation of this node type. See Node#type
.
# File lib/prism/node.rb, line 8529 def type :implicit_node end