| 35 | } |
| 36 | |
| 37 | SetterGetter::SetterGetter() { |
| 38 | log[0] = '\0'; |
| 39 | strncpy(prop1, "this is property 1", sizeof (prop1) - 1); |
| 40 | prop1[sizeof (prop1) - 1] = '\0'; |
| 41 | prop2[0] = '\0'; |
| 42 | } |
| 43 | |
| 44 | NAN_MODULE_INIT(SetterGetter::Init) { |
| 45 | v8::Local<v8::FunctionTemplate> tpl = |
nothing calls this directly
no outgoing calls
no test coverage detected