Run microtask before handling pending process.nextTick tasks

This follows the behavior of Node.js.
This commit is contained in:
Cheng Zhao 2015-08-07 21:26:24 +08:00
parent 1bb0dde360
commit c51f349dfa

View file

@ -98,6 +98,10 @@ void AtomBindings::OnCallNextTick(uv_async_t* handle) {
if (tick_info->in_tick())
continue;
if (tick_info->length() == 0) {
env->isolate()->RunMicrotasks();
}
if (tick_info->length() == 0) {
tick_info->set_index(0);
continue;