* lib/delegate.rb: split executable code into sample directory.

* sample/delegate.rb: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-07-26 17:11:56 +00:00
parent 1788d08d25
commit 6d6bd26270
3 changed files with 36 additions and 34 deletions

View File

@ -1,3 +1,8 @@
Sun Jul 27 02:06:55 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* lib/delegate.rb: split executable code into sample directory.
* sample/delegate.rb: ditto.
Sun Jul 27 01:46:34 2014 Zachary Scott <e@zzak.io>
* proc.c (method_super_method): [DOC] Method#super_method

View File

@ -415,37 +415,3 @@ def DelegateClass(superclass)
end
return klass
end
# :enddoc:
if __FILE__ == $0
class ExtArray<DelegateClass(Array)
def initialize()
super([])
end
end
ary = ExtArray.new
p ary.class
ary.push 25
p ary
ary.push 42
ary.each {|x| p x}
foo = Object.new
def foo.test
25
end
def foo.iter
yield self
end
def foo.error
raise 'this is OK'
end
foo2 = SimpleDelegator.new(foo)
p foo2
foo2.instance_eval{print "foo\n"}
p foo.test == foo2.test # => true
p foo2.iter{[55,true]} # => true
foo2.error # raise error!
end

31
sample/delegate.rb Normal file
View File

@ -0,0 +1,31 @@
require 'delegate'
class ExtArray<DelegateClass(Array)
def initialize()
super([])
end
end
ary = ExtArray.new
p ary.class
ary.push 25
p ary
ary.push 42
ary.each {|x| p x}
foo = Object.new
def foo.test
25
end
def foo.iter
yield self
end
def foo.error
raise 'this is OK'
end
foo2 = SimpleDelegator.new(foo)
p foo2
foo2.instance_eval{print "foo\n"}
p foo.test == foo2.test # => true
p foo2.iter{[55,true]} # => true
foo2.error # raise error!