| 105 | } |
| 106 | |
| 107 | NAN_PROPERTY_DELETER(NamedInterceptor::PropertyDeleter) { |
| 108 | NamedInterceptor* interceptor = |
| 109 | ObjectWrap::Unwrap<NamedInterceptor>(info.Holder()); |
| 110 | std::strncpy(interceptor->buf, "goober", sizeof (interceptor->buf)); |
| 111 | info.GetReturnValue().Set(True()); |
| 112 | return Intercepted::Yes(); |
| 113 | } |
| 114 | |
| 115 | NAN_PROPERTY_QUERY(NamedInterceptor::PropertyQuery) { |
| 116 | Nan::Utf8String s(property); |
nothing calls this directly
no test coverage detected