Spec-Zone.ru › Ruby 3.4

класс Prism::ClassVariableReadNode

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

Представляет обращение к классовой переменной.

@@foo
^^^^^

Атрибуты

name [R]

Имя классовой переменной, которое начинается с ‘@@` и за которым следует [идентификатор](github.com/ruby/prism/blob/main/docs/parsing_rules.md#identifiers).

@@abc   # name `:@@abc`

@@_test # name `:@@_test`

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

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

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

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

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

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

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

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

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

def accept: (Visitor visitor) -> void

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

def child_nodes: () -> Массив[nil | Узел]

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

def comment_targets: () -> Массив[Узел | Расположение]

compact_child_nodes ()
Исходный код
# File lib/prism/node.rb, line 4348
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 4358
def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name)
  ClassVariableReadNode.new(source, node_id, location, flags, name)
end

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

deconstruct ()

def deconstruct: () -> Массив[nil | Узел]

Алиас для: child_nodes
deconstruct_keys (keys)
Исходный код
# File lib/prism/node.rb, line 4366
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 4378
def inspect
  InspectVisitor.compose(self)
end

def inspect -> String

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