class ExecJS::RubyRhinoRuntime::Context

def eval(source, options = {})

def eval(source, options = {})
  source = source.encode(Encoding::UTF_8)
  if /\S/ =~ source
    unbox @rhino_context.eval("(#{source})")
  end
rescue Exception => e
  raise wrap_error(e)
end