| 106 | } |
| 107 | |
| 108 | NAN_INDEX_DELETER(IndexedInterceptor::PropertyDeleter) { |
| 109 | IndexedInterceptor* interceptor = |
| 110 | ObjectWrap::Unwrap<IndexedInterceptor>(info.Holder()); |
| 111 | std::strncpy(interceptor->buf, "goober", sizeof (interceptor->buf)); |
| 112 | info.GetReturnValue().Set(True()); |
| 113 | return Intercepted::Yes(); |
| 114 | } |
| 115 | |
| 116 | NAN_INDEX_QUERY(IndexedInterceptor::PropertyQuery) { |
| 117 | if (index == 1) { |
nothing calls this directly
no test coverage detected