From 1a2b90d5e6c7b6ecd1d4c0ba9445fb730b39776b Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 1 Jul 2014 17:57:37 +0000 Subject: vm.c: rb_vm_env_local_variables * vm.c (rb_vm_env_local_variables): returns array of local variable name symbols in the environment by envval. * proc.c (bind_local_variables): use rb_vm_env_local_variables. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_proc.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/ruby/test_proc.rb') diff --git a/test/ruby/test_proc.rb b/test/ruby/test_proc.rb index 91279d9d75..28ba8c9b57 100644 --- a/test/ruby/test_proc.rb +++ b/test/ruby/test_proc.rb @@ -1253,7 +1253,9 @@ class TestProc < Test::Unit::TestCase def test_local_variables b = get_binding - assert_equal(%i[if case when begin end a], b.local_variables) + assert_equal(%i'if case when begin end a', b.local_variables) + a = tap {|;a, b| break binding.local_variables} + assert_equal(%i[a b], a.sort) end def test_local_variables_nested -- cgit v1.2.3