We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a71f214 commit 97a264eCopy full SHA for 97a264e
test/cctest/node_test_fixture.h
@@ -59,7 +59,6 @@ class NodeTestFixture : public ::testing::Test {
59
static uv_loop_t* CurrentLoop() { return ¤t_loop; }
60
61
protected:
62
- v8::Isolate::CreateParams params_;
63
v8::Isolate* isolate_;
64
65
~NodeTestFixture() {
@@ -71,6 +70,7 @@ class NodeTestFixture : public ::testing::Test {
71
70
platform_ = new node::NodePlatform(8, ¤t_loop, nullptr);
72
v8::V8::InitializePlatform(platform_);
73
v8::V8::Initialize();
+ v8::Isolate::CreateParams params_;
74
params_.array_buffer_allocator = allocator_.get();
75
isolate_ = v8::Isolate::New(params_);
76
}
0 commit comments