class Prism::LocalVariableReadNode

表示读取局部变量。 请注意,这要求在同一作用域中已写入同名的局部变量,否则它将被解析为方法调用。

foo
^^^

属性

depth[R]

应搜索以查找此局部变量来源的可见作用域的数量。

foo = 1; foo # depth 0

bar = 2; tap { bar } # depth 1

计算深度的具体规则可能因各个 Ruby 实现而异,因为它们不是由语言指定的。 有关更多信息,请参阅[Prism 文档](github.com/ruby/prism/blob/main/docs/local_variable_depth.md)。

name[R]

局部变量的名称,它是一个[标识符](github.com/ruby/prism/blob/main/docs/parsing_rules.md#identifiers)。

x      # name `:x`

_Test  # name `:_Test`

请注意,对于默认的块参数,这也可以是一个下划线后跟一个数字。

_1     # name `:_1`

公共类方法

new(source, node_id, location, flags, name, depth) 点击切换源代码

初始化一个新的 LocalVariableReadNode 节点。

# File prism/node.rb, line 12037
def initialize(source, node_id, location, flags, name, depth)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
  @depth = depth
end
type() 点击切换源代码

返回此节点类型的符号表示形式。 请参阅“Node::type”。

# File prism/node.rb, line 12110
def self.type
  :local_variable_read_node
end

公共实例方法

===(other) 点击切换源代码

为节点实现 case-equality。 这实际上是 ==,但不比较位置的值。 位置仅检查是否存在。

# File prism/node.rb, line 12116
def ===(other)
  other.is_a?(LocalVariableReadNode) &&
    (name === other.name) &&
    (depth === other.depth)
end
accept(visitor) 点击切换源代码

def accept: (Visitor visitor) -> void

# File prism/node.rb, line 12047
def accept(visitor)
  visitor.visit_local_variable_read_node(self)
end
child_nodes() 点击切换源代码

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

# File prism/node.rb, line 12052
def child_nodes
  []
end
也别名为:deconstruct
comment_targets() 点击切换源代码

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

# File prism/node.rb, line 12062
def comment_targets
  [] #: Array[Prism::node | Location]
end
compact_child_nodes() 点击切换源代码

def compact_child_nodes: () -> Array

# File prism/node.rb, line 12057
def compact_child_nodes
  []
end
copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, depth: self.depth) 点击切换源代码

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

# File prism/node.rb, line 12067
def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, depth: self.depth)
  LocalVariableReadNode.new(source, node_id, location, flags, name, depth)
end
deconstruct()

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

别名为:child_nodes
deconstruct_keys(keys) 点击切换源代码

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, depth: Integer }

# File prism/node.rb, line 12075
def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name, depth: depth }
end
inspect() 点击切换源代码

def inspect -> String

# File prism/node.rb, line 12100
def inspect
  InspectVisitor.compose(self)
end
type() 点击切换源代码

返回此节点类型的符号表示形式。 请参阅“Node#type”。

# File prism/node.rb, line 12105
def type
  :local_variable_read_node
end