[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.216.140: ~ $
# frozen_string_literal: true
module Psych
  module Nodes
    ###
    # This class represents a {YAML Alias}[http://yaml.org/spec/1.1/#alias].
    # It points to an +anchor+.
    #
    # A Psych::Nodes::Alias is a terminal node and may have no children.
    class Alias < Psych::Nodes::Node
      # The anchor this alias links to
      attr_accessor :anchor

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

      def alias?; true; end
    end
  end
end

Filemanager

Name Type Size Permission Actions
alias.rb File 523 B 0644
document.rb File 1.81 KB 0644
mapping.rb File 1.54 KB 0644
node.rb File 1.92 KB 0644
scalar.rb File 1.63 KB 0644
sequence.rb File 2.03 KB 0644
stream.rb File 1 KB 0644