File tree 3 files changed +2
-4
lines changed
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -285,7 +285,6 @@ void Agent::ChildSignalCb(uv_async_t* signal) {
285
285
}
286
286
287
287
// Waiting for client, do not send anything just yet
288
- // TODO(indutny): move this to js-land
289
288
if (a->wait_ ) {
290
289
a->messages_ .PushFront (msg); // Push message back into the ready queue.
291
290
break ;
Original file line number Diff line number Diff line change @@ -109,7 +109,6 @@ class Agent {
109
109
kRunning
110
110
};
111
111
112
- // TODO(indutny): Verify that there are no races
113
112
State state_;
114
113
115
114
int port_;
Original file line number Diff line number Diff line change @@ -5168,7 +5168,7 @@ void PBKDF2(const FunctionCallbackInfo<Value>& args) {
5168
5168
5169
5169
if (args[5 ]->IsFunction ()) {
5170
5170
obj->Set (env->ondone_string (), args[5 ]);
5171
- // XXX(trevnorris): This will need to go with the rest of domains.
5171
+
5172
5172
if (env->in_domain ())
5173
5173
obj->Set (env->domain_string (), env->domain_array ()->Get (0 ));
5174
5174
uv_queue_work (env->event_loop (),
@@ -5329,7 +5329,7 @@ void RandomBytes(const FunctionCallbackInfo<Value>& args) {
5329
5329
5330
5330
if (args[1 ]->IsFunction ()) {
5331
5331
obj->Set (FIXED_ONE_BYTE_STRING (args.GetIsolate (), " ondone" ), args[1 ]);
5332
- // XXX(trevnorris): This will need to go with the rest of domains.
5332
+
5333
5333
if (env->in_domain ())
5334
5334
obj->Set (env->domain_string (), env->domain_array ()->Get (0 ));
5335
5335
uv_queue_work (env->event_loop (),
You can’t perform that action at this time.
0 commit comments