| 31 | static Persistent<v8::FunctionTemplate> settergetter_constructor; |
| 32 | |
| 33 | NAN_METHOD(CreateNew) { |
| 34 | info.GetReturnValue().Set(SetterGetter::NewInstance()); |
| 35 | } |
| 36 | |
| 37 | SetterGetter::SetterGetter() { |
| 38 | log[0] = '\0'; |
nothing calls this directly
no test coverage detected