make sync-default-gems GEM=irb
Backport changes from ruby/irb.
This commit is contained in:
parent
782e487260
commit
569c1ef6f1
@ -49,7 +49,7 @@ EOF
|
||||
@binding = BINDING_QUEUE.pop
|
||||
|
||||
when 3 # binding in function on TOPLEVEL_BINDING(default)
|
||||
@binding = eval("self.class.remove_method(:irb_binding) if defined?(irb_binding); def irb_binding; private; binding; end; irb_binding",
|
||||
@binding = eval("self.class.send(:remove_method, :irb_binding) if defined?(irb_binding); def irb_binding; private; binding; end; irb_binding",
|
||||
TOPLEVEL_BINDING,
|
||||
__FILE__,
|
||||
__LINE__ - 3)
|
||||
|
@ -4,7 +4,7 @@ require 'test/unit'
|
||||
module TestIRB
|
||||
class TestRaiseNoBacktraceException < Test::Unit::TestCase
|
||||
def test_raise_exception
|
||||
status = assert_in_out_err(%w[-rirb -W1 -e IRB.start(__FILE__) -- -f --], <<-IRB, /Exception: foo/, [])
|
||||
assert_in_out_err(%w[-rirb -W1 -e IRB.start(__FILE__) -- -f --], <<-IRB, /Exception: foo/, [])
|
||||
e = Exception.new("foo")
|
||||
def e.backtrace; nil; end
|
||||
raise e
|
||||
|
Loading…
x
Reference in New Issue
Block a user