mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c712fb7cd6
Adds a new abstract class for module authors and embedders to register arbitrary isolates with `node::MultiIsolatePlatform`. PR-URL: https://github.com/nodejs/node/pull/30324 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
8 lines
346 B
C++
8 lines
346 B
C++
#include "node_test_fixture.h"
|
|
|
|
ArrayBufferUniquePtr NodeZeroIsolateTestFixture::allocator{nullptr, nullptr};
|
|
uv_loop_t NodeZeroIsolateTestFixture::current_loop;
|
|
NodePlatformUniquePtr NodeZeroIsolateTestFixture::platform;
|
|
TracingAgentUniquePtr NodeZeroIsolateTestFixture::tracing_agent;
|
|
bool NodeZeroIsolateTestFixture::node_initialized = false;
|