| 265 | : _instance(winRtInstance), _getterFunc(getterFunc) {} |
| 266 | |
| 267 | static void New(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 268 | NodeRT::Utils::SetHiddenValue( |
| 269 | info.This(), Nan::New<String>("__winRtInstance__").ToLocalChecked(), |
| 270 | True()); |
| 271 | info.GetReturnValue().Set(info.This()); |
| 272 | } |
| 273 | |
| 274 | static void MoveNext(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 275 | HandleScope scope; |
nothing calls this directly
no test coverage detected