mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval.c (rb_call0): should call rb_call_super() directly for
visibility overriding. [ruby-dev:23989] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6714 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3f1f17c8c5
commit
1bd47bf0bc
7 changed files with 21 additions and 12 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Jul 28 15:44:08 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* eval.c (rb_call0): should call rb_call_super() directly for
|
||||
visibility overriding. [ruby-dev:23989]
|
||||
|
||||
Wed Jul 28 01:04:44 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* env.h: remove argv from ruby_frame.
|
||||
|
|
2
error.c
2
error.c
|
@ -280,7 +280,7 @@ rb_check_type(x, t)
|
|||
}
|
||||
type++;
|
||||
}
|
||||
rb_bug("unknown type 0x%x", t);
|
||||
rb_bug("unknown type 0x%x (0x%x given)", t, TYPE(x));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
4
eval.c
4
eval.c
|
@ -5539,8 +5539,8 @@ rb_call0(klass, recv, id, oid, argc, argv, body, nosuper)
|
|||
result = rb_ivar_set(recv, body->nd_vid, argv[0]);
|
||||
break;
|
||||
|
||||
case NODE_ZSUPER:
|
||||
result = rb_eval(recv, body);
|
||||
case NODE_ZSUPER: /* visibility override */
|
||||
result = rb_call_super(argc, argv);
|
||||
break;
|
||||
|
||||
case NODE_BMETHOD:
|
||||
|
|
|
@ -564,7 +564,7 @@ module DRb
|
|||
rescue
|
||||
raise(DRbConnError, $!.message, $!.backtrace)
|
||||
end
|
||||
raise(DRbConnError, 'connection closed') if sz.nil?
|
||||
raise(DRbConnError, 'connection closed') if str.nil?
|
||||
raise(DRbConnError, 'premature marshal format(can\'t read)') if str.size < sz
|
||||
begin
|
||||
Marshal::load(str)
|
||||
|
@ -1395,7 +1395,7 @@ module DRb
|
|||
@result = perform_without_block
|
||||
end
|
||||
@succ = true
|
||||
if @msg_id == :to_ary && @result.class == Values
|
||||
if @msg_id == :to_ary
|
||||
@result = DRbArray.new(@result)
|
||||
end
|
||||
return @succ, @result
|
||||
|
|
|
@ -9,7 +9,7 @@ module DRb
|
|||
end
|
||||
block_value = @block.call(*x)
|
||||
end
|
||||
|
||||
|
||||
def perform_with_block
|
||||
@obj.__send__(@msg_id, *@argv) do |*x|
|
||||
jump_error = nil
|
||||
|
|
|
@ -14,9 +14,9 @@ class DRbService
|
|||
@@manager = DRb::ExtServManager.new
|
||||
@@ruby = EnvUtil.rubybin
|
||||
@@ruby += " -d" if $DEBUG
|
||||
@@dir = File.dirname(File.expand_path(__FILE__))
|
||||
def self.add_service_command(nm)
|
||||
DRb::ExtServManager.command[nm] = "#{@@ruby} #{@@dir}/#{nm}"
|
||||
dir = File.dirname(File.expand_path(__FILE__))
|
||||
DRb::ExtServManager.command[nm] = "#{@@ruby} #{dir}/#{nm}"
|
||||
end
|
||||
|
||||
%w(ut_drb.rb ut_array.rb ut_port.rb ut_large.rb ut_safe1.rb ut_eval.rb).each do |nm|
|
||||
|
|
|
@ -6,14 +6,18 @@ end
|
|||
require "rbconfig"
|
||||
require "socket"
|
||||
require "test/unit"
|
||||
begin
|
||||
loadpath = $:.dup
|
||||
$:.replace($: | [File.expand_path("../ruby", File.dirname(__FILE__))])
|
||||
require 'envutil'
|
||||
ensure
|
||||
$:.replace(loadpath)
|
||||
end
|
||||
|
||||
if defined?(OpenSSL)
|
||||
|
||||
class OpenSSL::TestSSL < Test::Unit::TestCase
|
||||
RUBY = ENV["RUBY"] || File.join(
|
||||
::Config::CONFIG["bindir"],
|
||||
::Config::CONFIG["ruby_install_name"] + ::Config::CONFIG["EXEEXT"]
|
||||
)
|
||||
RUBY = EnvUtil.rubybin
|
||||
SSL_SERVER = File.join(File.dirname(__FILE__), "ssl_server.rb")
|
||||
PORT = 20443
|
||||
ITERATIONS = ($0 == __FILE__) ? 100 : 10
|
||||
|
|
Loading…
Reference in a new issue