1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/lib/v8/function.rb
2010-06-15 23:05:40 +03:00

43 lines
No EOL
1 KiB
Ruby

module V8
class Function < V8::Object
def methodcall(thisObject, *args)
err = nil
return_value = nil
C::TryCatch.try do |try|
@context.enter do
this = To.v8(thisObject)
return_value = To.rb(@native.Call(this, To.v8(args)))
err = JSError.new(try) if try.HasCaught()
end
end
raise err if err
return return_value
end
def call(*args)
self.methodcall(@context.Global(), *args)
end
def new(*args)
@context.enter do
To.rb(@native.NewInstance(To.v8(args)))
end
end
def self.rubycall(rubycode, *args)
begin
To.v8(rubycode.call(*args))
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
end
end