From 3feaa77e74c59170a89daf4d469d6518f4233958 Mon Sep 17 00:00:00 2001 From: knu Date: Mon, 16 Feb 2009 08:04:56 +0000 Subject: * class.c (rb_scan_args), README.EXT, README.EXT.ja: Add support for specifying the number of the trailing mandatory arguments. Update the documents accordingly. [ruby-dev:37995] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- README.EXT.ja | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'README.EXT.ja') diff --git a/README.EXT.ja b/README.EXT.ja index d7a688f72..feecc26e2 100644 --- a/README.EXT.ja +++ b/README.EXT.ja @@ -775,13 +775,14 @@ scan-arg-spec := param-arg-spec [block-arg-spec] param-arg-spec := pre-arg-spec [post-arg-spec] / post-arg-spec pre-arg-spec := num-of-leading-mandatory-args [num-of-optional-args] -post-arg-spec := sym-for-variable-length-args +post-arg-spec := sym-for-variable-length-args [num-of-trailing-mandatory-args] block-arg-spec := sym-for-block-arg num-of-leading-mandatory-args := DIGIT ; -- 先頭に置かれる省略不可能な引数の数 num-of-optional-args := DIGIT ; -- 続いて置かれる省略可能な引数の数 sym-for-variable-length-args := "*" ; -- 続いて置かれる可変長引数をRubyの配列で ; 取得するための指定 +num-of-trailing-mandatory-args := DIGIT ; -- 終端に置かれる省略不可能な引数の数 sym-for-block-arg := "&" ; -- イテレータブロックを取得するための指定 -- -- cgit