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

37 lines
876 B
Ruby
Raw Normal View History

2010-04-21 19:09:13 -04:00
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.ruby(@native.Call(this, *args.map {|a| To.v8(a)}))
err = JavascriptError.new(try) if try.HasCaught()
end
end
raise err if err
return return_value
2010-04-21 19:09:13 -04:00
end
def call(*args)
self.methodcall(@context.Global(), *args)
end
def new(*args)
@context.enter do
To.rb(@native.NewInstance(args.length, To.v8(args)))
end
end
def self.rubycall(rubycode, *args)
begin
To.v8(rubycode.call(*args))
rescue StandardError => e
V8::C::ThrowException(V8::C::Exception::Error(V8::C::String::New(e.message)))
end
end
2010-04-21 19:09:13 -04:00
end
end