| 22 | Nan::Persistent<v8::FunctionTemplate> NodeRT::OpaqueWrapper::s_constructorTemplate; |
| 23 | |
| 24 | void NodeRT::OpaqueWrapper::New(Nan::NAN_METHOD_ARGS_TYPE info) |
| 25 | { |
| 26 | NodeRT::Utils::SetHiddenValue(info.This(), Nan::New<String>("__winrtOpaqueWrapper__").ToLocalChecked(), Nan::True()); |
| 27 | |
| 28 | info.GetReturnValue().Set(info.This()); |
| 29 | } |
| 30 | |
| 31 | |
| 32 | void NodeRT::OpaqueWrapper::Init() |
nothing calls this directly
no test coverage detected