You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code that is converted from V8's C++ classes to NAPI's C function calls is often a little more verbose, e.g. napi_get_number_from_value(env, v) vs v->NumberValue(). This could be cleaned up somewhat by adding low/zero-overhead C++ helper classes in NAPI, allowing for more V8 style interaction with objects, and therefore easier porting.
The text was updated successfully, but these errors were encountered:
Code that is converted from V8's C++ classes to NAPI's C function calls is often a little more verbose, e.g.
napi_get_number_from_value(env, v)
vsv->NumberValue()
. This could be cleaned up somewhat by adding low/zero-overhead C++ helper classes in NAPI, allowing for more V8 style interaction with objects, and therefore easier porting.The text was updated successfully, but these errors were encountered: