Spec-Zone.ru › Ruby 3.4

класс Prism::ClassVariableTargetNode

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

Представляет запись в переменную класса в контексте, у которого нет явного значения.

@@foo, @@bar = baz
^^^^^  ^^^^^

Атрибуты

name [Ч]

attr_reader name: Symbol

Публичные методы класса

new (source, node_id, location, flags, name)
Исходный код
# File lib/prism/node.rb, line 4406
def initialize(source, node_id, location, flags, name)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
end

Инициализирует новый узел ClassVariableTargetNode.

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

Возвращает символьное представление типа этого узла. См. ‘Node::type`.

Публичные методы экземпляра

=== (other)
Исходный код
# File lib/prism/node.rb, line 4467
def ===(other)
  other.is_a?(ClassVariableTargetNode) &&
    (name === other.name)
end

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

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

def accept: (Visitor visitor) -> void

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

def child_nodes: () -> Массив[nil | Node]

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

def comment_targets: () -> Массив[Node | Location]

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

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

copy (node_id: self.node_id, location: self.location, flags: self.flags, name: self.name)
Исходный код
# File lib/prism/node.rb, line 4435
def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name)
  ClassVariableTargetNode.new(source, node_id, location, flags, name)
end

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol) -> ClassVariableTargetNode

deconstruct ()

def deconstruct: () -> Массив[nil | Node]

Псевдоним для: child_nodes
deconstruct_keys (keys)
Исходный код
# File lib/prism/node.rb, line 4443
def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name }
end

def deconstruct_keys: (Массив keys) -> { node_id: Integer, location: Location, name: Symbol }

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

def inspect -> String

type ()
Исходный код
# File lib/prism/node.rb, line 4456
def type
  :class_variable_target_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