mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
36 lines
No EOL
731 B
Ruby
36 lines
No EOL
731 B
Ruby
|
|
module V8
|
|
class Portal
|
|
class Caller
|
|
|
|
def initialize(portal)
|
|
@portal = portal
|
|
end
|
|
|
|
def raw
|
|
begin
|
|
yield
|
|
rescue Exception => e
|
|
case e
|
|
when SystemExit, NoMemoryError
|
|
raise e
|
|
else
|
|
error = V8::C::Exception::Error(V8::C::String::New(e.message))
|
|
error.SetHiddenValue("TheRubyRacer::Cause", C::External::New(e))
|
|
V8::C::ThrowException(error)
|
|
end
|
|
end
|
|
end
|
|
|
|
def protect(*args, &block)
|
|
@portal.v8 raw(*args, &block)
|
|
end
|
|
|
|
def invoke(code, *args, &block)
|
|
protect do
|
|
code.call(*args, &block)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |