| 117 | } |
| 118 | |
| 119 | static uv_idle_t* NewIdleToken() { |
| 120 | uv_idle_t* idleHandle = new uv_idle_t; |
| 121 | uv_idle_init(uv_default_loop(), idleHandle); |
| 122 | |
| 123 | SetHandleData(idleHandle->data); |
| 124 | return idleHandle; |
| 125 | } |
| 126 | |
| 127 | static uv_idle_t* NewIdleToken(Handle<Function> callback, |
| 128 | Handle<Value> receiver) { |
nothing calls this directly
no outgoing calls
no test coverage detected