mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
28 lines
No EOL
639 B
Ruby
28 lines
No EOL
639 B
Ruby
module V8
|
|
class Function < V8::Object
|
|
|
|
def methodcall(thisObject, *args)
|
|
err = nil
|
|
return_value = nil
|
|
C::TryCatch.try do |try|
|
|
@portal.open do |to|
|
|
this = to.v8(thisObject)
|
|
return_value = to.rb(@native.Call(this, to.v8(args)))
|
|
err = JSError.new(try, to) if try.HasCaught()
|
|
end
|
|
end
|
|
raise err if err
|
|
return return_value
|
|
end
|
|
|
|
def call(*args)
|
|
self.methodcall(@portal.context.native.Global(), *args)
|
|
end
|
|
|
|
def new(*args)
|
|
@portal.open do |to|
|
|
to.rb(@native.NewInstance(to.v8(args)))
|
|
end
|
|
end
|
|
end
|
|
end |