Represents a hash literal without opening and closing braces.
foo(a: b) ^^^^
attr_reader elements: Array[AssocNode | AssocSplatNode]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11335
def initialize(source, node_id, location, flags, elements)
@source = source
@node_id = node_id
@location = location
@flags = flags
@elements = elements
end
Initialize a new KeywordHashNode
node.
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11395
def self.type
:keyword_hash_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 11401
def ===(other)
other.is_a?(KeywordHashNode) &&
(flags === other.flags) &&
(elements.length == other.elements.length) &&
elements.zip(other.elements).all? { |left, right| left === right }
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 11344
def accept(visitor)
visitor.visit_keyword_hash_node(self)
end
def accept: (Visitor
visitor) -> void
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11349
def child_nodes
[*elements]
end
def child_nodes
: () -> Array[nil | Node]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11359
def comment_targets
[*elements] #: Array[Prism::node | Location]
end
def comment_targets
: () -> Array[Node | Location]
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11354
def compact_child_nodes
[*elements]
end
def compact_child_nodes
: () -> Array
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11364
def copy(node_id: self.node_id, location: self.location, flags: self.flags, elements: self.elements)
KeywordHashNode.new(source, node_id, location, flags, elements)
end
def copy: (?node_id: Integer
, ?location: Location
, ?flags: Integer
, ?elements: Array[AssocNode | AssocSplatNode]) -> KeywordHashNode
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11372
def deconstruct_keys(keys)
{ node_id: node_id, location: location, elements: elements }
end
def deconstruct_keys
: (Array keys) -> { node_id: Integer
, location: Location
, elements: Array[AssocNode | AssocSplatNode] }
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11385
def inspect
InspectVisitor.compose(self)
end
def inspect -> String
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11377
def symbol_keys?
flags.anybits?(KeywordHashNodeFlags::SYMBOL_KEYS)
end
def symbol_keys?: () -> bool
# File tmp/rubies/ruby-3.4.1/lib/prism/node.rb, line 11390
def type
:keyword_hash_node
end
Return a symbol representation of this node type. See ‘Node#type`.