| 417 | : _instance(winRtInstance), _getterFunc(getterFunc) {} |
| 418 | |
| 419 | static void New(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 420 | NodeRT::Utils::SetHiddenValue( |
| 421 | info.This().Nan::New<String>("__winRtInstance__").ToLocalChecked(), |
| 422 | True()); |
| 423 | info.GetReturnValue().Set(info.This()); |
| 424 | } |
| 425 | |
| 426 | static void First(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 427 | HandleScope scope; |
nothing calls this directly
no test coverage detected