класс Prism::KeywordHashNode
Представляет хеш-литерал без открывающих и закрывающих фигурных скобок.
foo(a: b)
^^^^ Атрибуты
attr_reader elements: Array[AssocNode | AssocSplatNode]
Открытые методы класса
Исходный код
# File 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
Инициализирует новый узел KeywordHashNode.
Исходный код
# File lib/prism/node.rb, line 11395 def self.type :keyword_hash_node end
Возвращает символ, представляющий тип узла. См. ‘Node::type`.
Открытые методы экземпляра
Исходный код
# File 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 Реализует проверку на равенство узлов. Это по сути ==, но без сравнения значений местоположений. Местоположения проверяются только на наличие.
Исходный код
# File lib/prism/node.rb, line 11344 def accept(visitor) visitor.visit_keyword_hash_node(self) end
def accept: (Visitor visitor) -> void
Исходный код
# File lib/prism/node.rb, line 11349 def child_nodes [*elements] end
def child_nodes: () -> Array[nil | Node]
Исходный код
# File lib/prism/node.rb, line 11359 def comment_targets [*elements] #: Array[Prism::node | Location] end
def comment_targets: () -> Array[Node | Location]
Исходный код
# File lib/prism/node.rb, line 11354 def compact_child_nodes [*elements] end
def compact_child_nodes: () -> Массив
Исходный код
# File 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 lib/prism/node.rb, line 11372
def deconstruct_keys(keys)
{ node_id: node_id, location: location, elements: elements }
end def deconstruct_keys: (Массив keys) -> { node_id: Integer, location: Location, elements: Array[AssocNode | AssocSplatNode] }
Исходный код
# File lib/prism/node.rb, line 11385 def inspect InspectVisitor.compose(self) end
def inspect -> String
Исходный код
# File lib/prism/node.rb, line 11377 def symbol_keys? flags.anybits?(KeywordHashNodeFlags::SYMBOL_KEYS) end
def symbol_keys?: () -> bool
Исходный код
# File lib/prism/node.rb, line 11390 def type :keyword_hash_node end
Возвращает символ, представляющий тип узла. См. ‘Node#type`.
Ruby Core © 1993–2024 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.