PATH: //opt/alt/ruby32/share/ruby/psych
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 class_loader.rb
↓
X
📄 coder.rb
↓
X
📄 core_ext.rb
↓
X
📄 exception.rb
↓
X
📄 handler.rb
↓
X
📁 handlers/
X
📁 json/
X
📁 nodes/
X
📄 nodes.rb
↓
X
📄 omap.rb
↓
X
📄 parser.rb
↓
X
📄 scalar_scanner.rb
↓
X
📄 set.rb
↓
X
📄 stream.rb
↓
X
📄 streaming.rb
↓
X
📄 syntax_error.rb
↓
X
📄 tree_builder.rb
↓
X
📄 versions.rb
↓
X
📁 visitors/
X
📄 visitors.rb
↓
X
📄 y.rb
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: exception.rb
# frozen_string_literal: true module Psych class Exception < RuntimeError end class BadAlias < Exception end # Subclasses `BadAlias` for backwards compatibility class AliasesNotEnabled < BadAlias def initialize super "Alias parsing was not enabled. To enable it, pass `aliases: true` to `Psych::load` or `Psych::safe_load`." end end # Subclasses `BadAlias` for backwards compatibility class AnchorNotDefined < BadAlias def initialize anchor_name super "An alias referenced an unknown anchor: #{anchor_name}" end end class DisallowedClass < Exception def initialize action, klass_name super "Tried to #{action} unspecified class: #{klass_name}" end end end
SIMPAN PERUBAHAN