| 11 | using namespace Nan; // NOLINT(build/namespaces) |
| 12 | |
| 13 | NAN_METHOD(CallHandler) { |
| 14 | info.GetReturnValue().Set(12); |
| 15 | } |
| 16 | |
| 17 | NAN_METHOD(CallHandlerSetter) { |
| 18 | v8::Local<v8::FunctionTemplate> tpl = New<v8::FunctionTemplate>(); |
nothing calls this directly
no test coverage detected