Handle<Value>
配列のを設定したい。私はv8の初心者ですが、たとえば次のように設定する方法がわかりません。
Persistent<Context> fcontext
Handle<Value> Arr = Array::New(0);
Persistent<Function> Func;
Handle<Value> result = Func->Call(fcontext->Global(), 0, Arr);
このエラーが表示されます:
error C2664: 'v8::Function::Call' : cannot convert parameter 3 from 'v8::Handle<T>' to 'v8::Handle<T> []'
1> with
1> [
1> T=v8::Value
1> ]
Handle<Value>
1つの要素を持つ配列を作成するにはどうすればよいですか?