summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--parse.y8
-rw-r--r--test/ruby/test_lambda.rb24
3 files changed, 34 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d839d0c98..5ea5510cf7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Sep 19 16:59:02 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * parse.y (lambda): adjust position to the beginning of the block.
+
Thu Sep 19 16:25:06 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vsnprintf.c (BSD_vfprintf): initialize cp so that size is 0 in the
diff --git a/parse.y b/parse.y
index b1474b8eac..f704930d5a 100644
--- a/parse.y
+++ b/parse.y
@@ -3460,13 +3460,17 @@ lambda : {
lpar_beg = ++paren_nest;
}
f_larglist
+ {
+ $<num>$ = ruby_sourceline;
+ }
lambda_body
{
lpar_beg = $<num>2;
/*%%%*/
- $$ = NEW_LAMBDA($3, $4);
+ $$ = NEW_LAMBDA($3, $5);
+ nd_set_line($$, $<num>4);
/*%
- $$ = dispatch2(lambda, $3, $4);
+ $$ = dispatch2(lambda, $3, $5);
%*/
dyna_pop($<vars>1);
}
diff --git a/test/ruby/test_lambda.rb b/test/ruby/test_lambda.rb
index f042ab015e..6023c3fcc8 100644
--- a/test/ruby/test_lambda.rb
+++ b/test/ruby/test_lambda.rb
@@ -109,4 +109,28 @@ class TestLambdaParameters < Test::Unit::TestCase
assert_equal(42, return_in_current(42), feature8693)
assert_equal(42, return_in_callee(42), feature8693)
end
+
+ def test_do_lambda_source_location
+ exp_lineno = __LINE__ + 3
+ lmd = ->(x,
+ y,
+ z) do
+ #
+ end
+ file, lineno = lmd.source_location
+ assert_match(/^#{ Regexp.quote(__FILE__) }$/, file)
+ assert_equal(exp_lineno, lineno, "must be ")
+ end
+
+ def test_brace_lambda_source_location
+ exp_lineno = __LINE__ + 3
+ lmd = ->(x,
+ y,
+ z) {
+ #
+ }
+ file, lineno = lmd.source_location
+ assert_match(/^#{ Regexp.quote(__FILE__) }$/, file)
+ assert_equal(exp_lineno, lineno, "must be ")
+ end
end