class Psych::Nodes::Alias

A Psych::Nodes::Alias is a terminal node and may have no children.
It points to an anchor.
This class represents a YAML Alias.
##

def alias?; true; end

def alias?; true; end

def initialize anchor

Create a new Alias that points to an +anchor+
def initialize anchor
  @anchor = anchor
end