| 30 | } // namespace |
| 31 | |
| 32 | Object InitCallbackScope(Env env) { |
| 33 | Object exports = Object::New(env); |
| 34 | exports["runInCallbackScope"] = Function::New(env, RunInCallbackScope); |
| 35 | exports["runInPreExistingCbScope"] = |
| 36 | Function::New(env, RunInCallbackScopeFromExisting); |
| 37 | return exports; |
| 38 | } |
| 39 | #endif |