I want to call some existing functions, but the function requires the CallbackInfo parameter, how do I initialize a CallbackInfo
Value b(const CallbackInfo& info)
{
...
}
Value a(const CallbackInfo& info)
{
CallbackInfo newInfo = CallbackInfo::New();
return b(newInfo);
}