Spec-Zone.ru › Ruby 3.4

класс Prism::KeywordHashNode

Родитель:
Prism::Node

Представляет хеш-литерал без открывающих и закрывающих фигурных скобок.

foo(a: b)
    ^^^^

Атрибуты

elements [R]

attr_reader elements: Array[AssocNode | AssocSplatNode]

Открытые методы класса

new (source, node_id, location, flags, elements)
Исходный код
# 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.

type ()
Исходный код
# File lib/prism/node.rb, line 11395
def self.type
  :keyword_hash_node
end

Возвращает символ, представляющий тип узла. См. ‘Node::type`.

Открытые методы экземпляра

=== (other)
Исходный код
# 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

Реализует проверку на равенство узлов. Это по сути ==, но без сравнения значений местоположений. Местоположения проверяются только на наличие.

accept (visitor)
Исходный код
# File lib/prism/node.rb, line 11344
def accept(visitor)
  visitor.visit_keyword_hash_node(self)
end

def accept: (Visitor visitor) -> void

child_nodes ()
Исходный код
# File lib/prism/node.rb, line 11349
def child_nodes
  [*elements]
end

def child_nodes: () -> Array[nil | Node]

Также алиасировано как: deconstruct
comment_targets ()
Исходный код
# File lib/prism/node.rb, line 11359
def comment_targets
  [*elements] #: Array[Prism::node | Location]
end

def comment_targets: () -> Array[Node | Location]

compact_child_nodes ()
Исходный код
# File lib/prism/node.rb, line 11354
def compact_child_nodes
  [*elements]
end

def compact_child_nodes: () -> Массив

copy (node_id: self.node_id, location: self.location, flags: self.flags, elements: self.elements)
Исходный код
# 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

deconstruct ()

def deconstruct: () -> Array[nil | Node]

Псевдоним для: child_nodes
deconstruct_keys (keys)
Исходный код
# 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] }

inspect ()
Исходный код
# File lib/prism/node.rb, line 11385
def inspect
  InspectVisitor.compose(self)
end

def inspect -> String

symbol_keys? ()
Исходный код
# File lib/prism/node.rb, line 11377
def symbol_keys?
  flags.anybits?(KeywordHashNodeFlags::SYMBOL_KEYS)
end

def symbol_keys?: () -> bool

type ()
Исходный код
# 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.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API