OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
psych
/
nodes
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
alias.rb
494 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
document.rb
1.78 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
mapping.rb
1.51 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
node.rb
1.57 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
scalar.rb
1.6 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
sequence.rb
2 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
stream.rb
995 bytes
05/15/2023 11:41:43 AM
rw-r--r--
Editing: alias.rb
Close
# 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 end end end