| 24 | } |
| 25 | |
| 26 | static |
| 27 | v8::Local<v8::Object> NewInstance(int argc, v8::Local<v8::Value> argv[]) { |
| 28 | v8::Local<v8::Function> cons = Nan::New(constructor()); |
| 29 | return Nan::NewInstance(cons, argc, argv).ToLocalChecked(); |
| 30 | } |
| 31 | |
| 32 | private: |
| 33 | explicit InnerObject(double value = 0) : value_(value) {} |
nothing calls this directly
no test coverage detected