类 Psych::Nodes::Alias

此类表示一个 YAML 别名。它指向一个 anchor

一个 Psych::Nodes::Alias 是一个终端节点,不能有子节点。

属性

anchor[RW]

此别名链接到的锚点

公共类方法

new(anchor) 点击切换源代码

创建一个指向 anchor 的新 Alias

# File ext/psych/lib/psych/nodes/alias.rb, line 14
def initialize anchor
  @anchor = anchor
end

公共实例方法

alias?() 点击切换源代码
# File ext/psych/lib/psych/nodes/alias.rb, line 18
def alias?; true; end