GRAYBYTE WORDPRESS FILE MANAGER8317

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/alt/ruby24/lib64/ruby/2.4.0/psych/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/alt/ruby24/lib64/ruby/2.4.0/psych//tree_builder.rb
# frozen_string_literal: false
require 'psych/handler'

module Psych
  ###
  # 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.
  class TreeBuilder < Psych::Handler
    # Returns the root node for the built tree
    attr_reader :root

    # Create a new TreeBuilder instance
    def initialize
      @stack = []
      @last  = nil
      @root  = nil
    end

    %w{
      Sequence
      Mapping
    }.each do |node|
      class_eval %{
        def start_#{node.downcase}(anchor, tag, implicit, style)
          n = Nodes::#{node}.new(anchor, tag, implicit, style)
          @last.children << n
          push n
        end

        def end_#{node.downcase}
          pop
        end
      }
    end

    ###
    # Handles start_document events with +version+, +tag_directives+,
    # and +implicit+ styling.
    #
    # See Psych::Handler#start_document
    def start_document version, tag_directives, implicit
      n = Nodes::Document.new version, tag_directives, implicit
      @last.children << n
      push n
    end

    ###
    # Handles end_document events with +version+, +tag_directives+,
    # and +implicit+ styling.
    #
    # See Psych::Handler#start_document
    def end_document implicit_end = !streaming?
      @last.implicit_end = implicit_end
      pop
    end

    def start_stream encoding
      @root = Nodes::Stream.new(encoding)
      push @root
    end

    def end_stream
      pop
    end

    def scalar value, anchor, tag, plain, quoted, style
      s = Nodes::Scalar.new(value,anchor,tag,plain,quoted,style)
      @last.children << s
      s
    end

    def alias anchor
      @last.children << Nodes::Alias.new(anchor)
    end

    private
    def push value
      @stack.push value
      @last = value
    end

    def pop
      x = @stack.pop
      @last = @stack.last
      x
    end
  end
end

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 03 2024 22:48:02
root / root
0755
handlers
--
March 03 2024 22:48:00
root / linksafe
0755
json
--
March 03 2024 22:48:00
root / linksafe
0755
nodes
--
March 03 2024 22:48:00
root / linksafe
0755
visitors
--
March 03 2024 22:48:00
root / linksafe
0755
class_loader.rb
1.91 KB
July 26 2023 14:47:48
root / linksafe
0644
coder.rb
2.05 KB
July 26 2023 14:47:48
root / linksafe
0644
core_ext.rb
0.764 KB
July 26 2023 14:47:48
root / linksafe
0644
deprecated.rb
2.521 KB
July 26 2023 14:47:48
root / linksafe
0644
exception.rb
0.259 KB
July 26 2023 14:47:48
root / linksafe
0644
handler.rb
7.05 KB
July 26 2023 14:47:48
root / linksafe
0644
nodes.rb
2.355 KB
July 26 2023 14:47:48
root / linksafe
0644
omap.rb
0.074 KB
July 26 2023 14:47:48
root / linksafe
0644
parser.rb
1.672 KB
July 26 2023 14:47:48
root / linksafe
0644
scalar_scanner.rb
4.283 KB
July 26 2023 14:47:48
root / linksafe
0644
set.rb
0.073 KB
July 26 2023 14:47:48
root / linksafe
0644
stream.rb
0.902 KB
July 26 2023 14:47:48
root / linksafe
0644
streaming.rb
0.652 KB
July 26 2023 14:47:48
root / linksafe
0644
syntax_error.rb
0.572 KB
July 26 2023 14:47:48
root / linksafe
0644
tree_builder.rb
2.085 KB
July 26 2023 14:47:48
root / linksafe
0644
versions.rb
0.183 KB
July 26 2023 14:47:48
root / linksafe
0644
visitors.rb
0.231 KB
July 26 2023 14:47:48
root / linksafe
0644
y.rb
0.187 KB
July 26 2023 14:47:48
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF