Not supporting this for now since we need to initialize the array ourselves and don't know which size to use
| 302 | // Not supporting this for now since we need to initialize the array ourselves |
| 303 | // and don't know which size to use |
| 304 | static void GetMany(Nan::NAN_METHOD_ARGS_TYPE info) { |
| 305 | HandleScope scope; |
| 306 | Nan::ThrowError(Nan::Error(NodeRT::Utils::NewString(L"Not implemented"))); |
| 307 | return; |
| 308 | } |
| 309 | |
| 310 | static void CurrentGetter(Local<String> property, |
| 311 | const Nan::PropertyCallbackInfo<v8::Value>& info) { |
nothing calls this directly
no test coverage detected