mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/irb/extend-command.rb (def_extend_command): check number of
arguments. [ruby-dev:35074] * lib/irb/ext/multi-irb.rb (search): check if a corresponding job is found. [ruby-dev:35074] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4da80c7d6b
commit
cba52ec37c
3 changed files with 19 additions and 6 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
Mon Aug 25 22:39:57 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
||||||
|
|
||||||
|
* lib/irb/extend-command.rb (def_extend_command): check number of
|
||||||
|
arguments. [ruby-dev:35074]
|
||||||
|
|
||||||
|
* lib/irb/ext/multi-irb.rb (search): check if a corresponding job is
|
||||||
|
found. [ruby-dev:35074]
|
||||||
|
|
||||||
Mon Aug 25 22:29:13 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
Mon Aug 25 22:29:13 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
||||||
|
|
||||||
* test/ruby/test_io.rb (test_dup): fix typo. see [ruby-dev:35958]
|
* test/ruby/test_io.rb (test_dup): fix typo. see [ruby-dev:35958]
|
||||||
|
|
|
@ -69,7 +69,7 @@ module IRB
|
||||||
end
|
end
|
||||||
|
|
||||||
def search(key)
|
def search(key)
|
||||||
case key
|
job = case key
|
||||||
when Integer
|
when Integer
|
||||||
@jobs[key]
|
@jobs[key]
|
||||||
when Irb
|
when Irb
|
||||||
|
@ -77,10 +77,10 @@ module IRB
|
||||||
when Thread
|
when Thread
|
||||||
@jobs.assoc(key)
|
@jobs.assoc(key)
|
||||||
else
|
else
|
||||||
assoc = @jobs.find{|k, v| v.context.main.equal?(key)}
|
@jobs.find{|k, v| v.context.main.equal?(key)}
|
||||||
IRB.fail NoSuchJob, key if assoc.nil?
|
|
||||||
assoc
|
|
||||||
end
|
end
|
||||||
|
IRB.fail NoSuchJob, key if job.nil?
|
||||||
|
job
|
||||||
end
|
end
|
||||||
|
|
||||||
def delete(key)
|
def delete(key)
|
||||||
|
|
|
@ -125,9 +125,14 @@ module IRB
|
||||||
eval %[
|
eval %[
|
||||||
def #{cmd_name}(*opts, &b)
|
def #{cmd_name}(*opts, &b)
|
||||||
require "#{load_file}"
|
require "#{load_file}"
|
||||||
|
arity = ExtendCommand::#{cmd_class}.instance_method(:execute).arity
|
||||||
|
args = (1..arity.abs).map {|i| "arg" + i.to_s }
|
||||||
|
args << "*opts" if arity < 0
|
||||||
|
args << "&block"
|
||||||
|
args = args.join(", ")
|
||||||
eval %[
|
eval %[
|
||||||
def #{cmd_name}(*opts, &b)
|
def #{cmd_name}(\#{args})
|
||||||
ExtendCommand::#{cmd_class}.execute(irb_context, *opts, &b)
|
ExtendCommand::#{cmd_class}.execute(irb_context, \#{args})
|
||||||
end
|
end
|
||||||
]
|
]
|
||||||
send :#{cmd_name}, *opts, &b
|
send :#{cmd_name}, *opts, &b
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue