class Psych::Visitors::ToRuby

def revive_data_members hash, o

def revive_data_members hash, o
  o.children.each_slice(2) do |k,v|
    name  = accept(k)
    value = accept(v)
    hash[class_loader.symbolize(name)] = value
  end
  hash
end