| 392 | } |
| 393 | |
| 394 | void SetConstructorFunction(Local <v8::Context> context, |
| 395 | Local <v8::Object> that, |
| 396 | const char *name, |
| 397 | Local <v8::FunctionTemplate> tmpl, |
| 398 | SetConstructorFunctionFlag flag) { |
| 399 | Isolate *isolate = context->GetIsolate(); |
| 400 | SetConstructorFunction( |
| 401 | context, that, tns::OneByteString(isolate, name), tmpl, flag); |
| 402 | } |
| 403 | |
| 404 | void SetConstructorFunction(Local <Context> context, |
| 405 | Local <Object> that, |
nothing calls this directly
no test coverage detected