📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 18:04:12
📂
/
/
opt
/
alt
/
ruby22
/
lib64
/
ruby
/
2.2.0
/
psych
/
visitors
✏️
Editing: visitor.rb
module Psych module Visitors class Visitor def accept target visit target end private DISPATCH = Hash.new do |hash, klass| hash[klass] = "visit_#{klass.name.gsub('::', '_')}" end def visit target send DISPATCH[target.class], target end end end end
💾 Save Changes
❌ Cancel