[ruby-cvs:78274] 4b583cff97 (master): Method parameters inspect
"zverok" <[email protected]>
| Newsgroups | gmane.comp.lang.ruby.cvs |
|---|---|
| Message-ID | <[email protected]> |
zverok 2019-10-27 19:39:33 +0900 (Sun, 27 Oct 2019)
New Revision: 4b583cff97
https://github.com/ruby/ruby/commit/4b583cff97
Log:
Method parameters inspect
Example:
def m(a, b=nil, *c, d:, e: nil, **rest, &block)
end
p method(:m)
#=> #<Method: m(a, b=<default>, *c, d:, e: <default>, **rest, &block) ...>
Modified files:
proc.c
test/ruby/test_method.rb