From 5cda4e90714fedc78abb0426c2ab932bf113fb2d Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 19 Sep 2013 07:59:07 +0000 Subject: parse.y: adjust position of lambda * parse.y (lambda): adjust position to the beginning of the block. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_lambda.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'test') 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 -- cgit v1.2.3