diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-02 03:39:01 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-02 03:39:01 +0000 |
commit | ce720ca0dc2b66d50eabdbc335d5369366b6bd61 (patch) | |
tree | 8fc391820b2d123423d9c0f19522cd262b56a600 /sample | |
parent | 61fc0c6cf4de377a14a0ec0d64aea067e72fa755 (diff) | |
download | ruby-ce720ca0dc2b66d50eabdbc335d5369366b6bd61.tar.gz |
* sample/test.rb (valid_syntax?), test/ruby/test_system.rb
(TestSystem::valid_syntax?): use catch and throw instead of
return inside BEGIN block.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample')
-rw-r--r-- | sample/test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/test.rb b/sample/test.rb index 21656885f6..03ab435e00 100644 --- a/sample/test.rb +++ b/sample/test.rb @@ -1931,9 +1931,9 @@ def valid_syntax?(code, fname) p fname code.force_encoding("ascii-8bit") code = code.sub(/\A(?:\s*\#.*$)*(\n)?/n) { - "#$&#{"\n" if $1 && !$2}BEGIN{return true}\n" + "#$&#{"\n" if $1 && !$2}BEGIN{throw tag, :ok}\n" } - eval(code, nil, fname, 0) + catch {|tag| eval(code, binding, fname, 0)} rescue Exception STDERR.puts $!.message false |