* lib/delegate.rb (marshal_dump, marshal_load: defined for Marshal.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4318 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2003-08-04 12:45:03 +00:00
Родитель 8141083006
Коммит 804e475b66
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -51,6 +51,12 @@ class Delegator
raise NotImplementedError, "need to define `__getobj__'"
end
def marshal_dump
__getobj__
end
def marshal_load(obj)
initialize(obj)
end
end
class SimpleDelegator<Delegator