We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 482c27e commit d84f16eCopy full SHA for d84f16e
src/env.h
@@ -313,11 +313,6 @@ class ModuleWrap;
313
314
class Environment;
315
316
-struct node_async_ids {
317
- double async_id;
318
- double trigger_async_id;
319
-};
320
-
321
class IsolateData {
322
public:
323
IsolateData(v8::Isolate* isolate, uv_loop_t* event_loop,
@@ -424,7 +419,7 @@ class Environment {
424
419
// Used by provider_string().
425
420
v8::Isolate* isolate_;
426
421
// Stores the ids of the current execution context stack.
427
- std::stack<struct node_async_ids> async_ids_stack_;
422
+ std::stack<async_context> async_ids_stack_;
428
423
// Attached to a Uint32Array that tracks the number of active hooks for
429
// each type.
430
AliasedBuffer<uint32_t, v8::Uint32Array> fields_;
0 commit comments