| 801 | _convertToTypeFunc(convertToTypeFunc) {} |
| 802 | |
| 803 | static void New(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 804 | NodeRT::Utils::SetHiddenValue( |
| 805 | info.This(), Nan::New<String>("__winRtInstance__").ToLocalChecked(), |
| 806 | True()); |
| 807 | |
| 808 | info.GetReturnValue().Set(info.This()); |
| 809 | } |
| 810 | |
| 811 | static void Get(uint32_t index, |
| 812 | const Nan::PropertyCallbackInfo<v8::Value>& info) { |
nothing calls this directly
no test coverage detected