Skip to Content Skip to Search

This class represents a YAML Alias. It points to an anchor.

A Psych::Nodes::Alias is a terminal node and may have no children.

Methods
A
N

Attributes

[RW] anchor

The anchor this alias links to

Class Public methods

new(anchor)

Create a new Alias that points to an anchor

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

Instance Public methods

alias?()

# File ruby/ext/psych/lib/psych/nodes/alias.rb, line 18
def alias?; true; end