From 62deb7dbbda5104c352abd723053bd1b18e50dbf Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 24 Jun 2007 13:05:51 +0000 Subject: * insn_send.ci: removed. * common.mk: ditto. * vm.c (vm_call_bmethod), isnsn.def: added. fix to use this function instead of using goto. * vm.c (vm_call_bmethod): renamed from th_invoke_bmethod(). * vm.c (vm_method_missing): renamed from eval_methdo_missing(). * vm_evalbody.ci: remove tmp_* variables. * insnhelper.h: add some macros. * insns.def: forbid zsuper from method defined by define_method(). * test/ruby/test_super.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_super.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/ruby/test_super.rb b/test/ruby/test_super.rb index 900fe997e6..d64fef514e 100644 --- a/test/ruby/test_super.rb +++ b/test/ruby/test_super.rb @@ -120,7 +120,7 @@ class TestSuper < Test::Unit::TestCase def uu(a) class << self define_method(:tt) do |sym| - super + super(sym) end end end -- cgit v1.2.3