How to rescue an eval in Ruby?

Brent Chapman picture Brent Chapman · Feb 12, 2009 · Viewed 16k times · Source

I'm trying to figure out how to rescue syntax errors that come up when eval()ing code in Ruby 1.8.6.

I would expect the following Ruby code:

#!/usr/bin/ruby

good_str = "(1+1)"
bad_str = "(1+1"    # syntax error: missing closing paren

begin
    puts eval(good_str)
    puts eval(bad_str)
rescue => exc
    puts "RESCUED!"
end

to produce the following result when run:

2
RESCUED!

Instead, what I get is:

2
eval_rescue.rb:8: (eval):1: compile error (SyntaxError)
(eval):1: syntax error, unexpected $end, expecting ')'

It appears that the SyntaxError raised by the eval method is being rescued somewhere within the eval, without giving me a chance to handle it myself.

Anybody have any idea how to get the behavior I want (i.e., for my 'rescue' clause to catch the error from the 'eval')?

Answer

James A. Rosen picture James A. Rosen · Feb 12, 2009

Brent already got an answer that works, but I recommend rescuing from the smallest set of exceptions you can get away with. This makes sure you're not accidentally gobbling up something you don't mean to be.

Thus,

begin
  puts eval(good_str)
  puts eval(bad_str)
rescue SyntaxError => se
  puts 'RESCUED!'
end