| 1310 | _valueGetterFunc(valueGetterFunc) {} |
| 1311 | |
| 1312 | static void New(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 1313 | NodeRT::Utils::SetHiddenValue( |
| 1314 | info.This(), Nan::New<String>("__winRtInstance__").ToLocalChecked(), |
| 1315 | True()); |
| 1316 | info.GetReturnValue().Set(info.This()); |
| 1317 | } |
| 1318 | |
| 1319 | static void KeyGetter(Local<String> property, |
| 1320 | const Nan::PropertyCallbackInfo<v8::Value>& info) { |
nothing calls this directly
no test coverage detected