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

9 lines
172 B
Ruby
Raw Normal View History

2010-04-21 19:09:13 -04:00
module V8
class Function < V8::Object
def call(thisObject, *args)
To.ruby(@native.Call(To.v8(thisObject), *args.map {|a| To.v8(a)}))
end
end
end