| 325 | } |
| 326 | |
| 327 | void Timers::InitStatic(v8::Isolate* isolate, v8::Local<v8::ObjectTemplate> globalObjectTemplate) { |
| 328 | auto timers = new Timers(); |
| 329 | timers->Init(isolate, globalObjectTemplate); |
| 330 | registerIsolateBoundObject(isolate, timers); |
| 331 | } |
| 332 | |
| 333 | }; |
| 334 |
nothing calls this directly
no test coverage detected