| 30 | static Persistent<v8::FunctionTemplate> namedinterceptors_constructor; |
| 31 | |
| 32 | NAN_METHOD(CreateNew) { |
| 33 | info.GetReturnValue().Set(NamedInterceptor::NewInstance()); |
| 34 | } |
| 35 | |
| 36 | NAN_MODULE_INIT(NamedInterceptor::Init) { |
| 37 | v8::Local<v8::FunctionTemplate> tpl = |
nothing calls this directly
no test coverage detected