class V8::Portal::FunctionAdapter::Call

def call(arguments)

def call(arguments)
  proc = arguments.Data()
  rbargs = []
  for i in 0..arguments.Length() - 1
    rbargs << @portal.rb(arguments[i])
  end
  @portal.caller.invoke(proc, *rbargs)
end

def initialize(portal)

def initialize(portal)
  @portal = portal
end