This class works in conjunction with Psych::Parser to build an in-memory parse tree that represents a YAML document.
Example
parser = Psych::Parser.new Psych::TreeBuilder.new parser.parse('--- foo') tree = parser.handler.root
See Psych::Handler for documentation on the event methods used in this class.
      Attributes
    
  
          
            Read
          
        
      Returns the root node for the built tree
      Class Methods
    
  
          
            .
          
          
        
      
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 22
def initialize
  @stack = []
  @last  = nil
  @root  = nil
end
          
        
      Create a new TreeBuilder instance
      Instance Methods
    
  
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 81
def alias anchor
  @last.children << Nodes::Alias.new(anchor)
end
          
        
      No documentation available
      
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 61
def end_document implicit_end = !streaming?
  @last.implicit_end = implicit_end
  pop
end
          
        
      Handles end_document events with version, tag_directives, and implicit styling.
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 71
def end_stream
  pop
end
          
        
      No documentation available
      
          
            #
          
          
        
      
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 91
def pop
  x = @stack.pop
  @last = @stack.last
  x
end
          
        
      No documentation available
      
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 86
def push value
  @stack.push value
  @last = value
end
          
        
      No documentation available
      
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 75
def scalar value, anchor, tag, plain, quoted, style
  s = Nodes::Scalar.new(value,anchor,tag,plain,quoted,style)
  @last.children << s
  s
end
          
        
      No documentation available
      
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 50
def start_document version, tag_directives, implicit
  n = Nodes::Document.new version, tag_directives, implicit
  @last.children << n
  push n
end
          
        
      Handles start_document events with version, tag_directives, and implicit styling.
          
            2.3
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.3.8/ext/psych/lib/psych/tree_builder.rb, line 66
def start_stream encoding
  @root = Nodes::Stream.new(encoding)
  push @root
end
          
        
      No documentation available