| 1722 | _convertToValueTypeFunc(convertToValueTypeFunc) {} |
| 1723 | |
| 1724 | static void New(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 1725 | NodeRT::Utils::SetHiddenValue( |
| 1726 | info.This(), Nan::New<String>("__winRtInstance__").ToLocalChecked(), |
| 1727 | True()); |
| 1728 | |
| 1729 | info.GetReturnValue().Set(info.This()); |
| 1730 | } |
| 1731 | |
| 1732 | static void HasKey(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 1733 | HandleScope scope; |
nothing calls this directly
no test coverage detected