File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 36
36
37
37
# Reset this number to 0 on major V8 upgrades.
38
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string' : '-node.2 ' ,
39
+ 'v8_embedder_string' : '-node.3 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -77,6 +77,15 @@ struct WrapperDescriptor final {
77
77
};
78
78
79
79
struct V8_EXPORT CppHeapCreateParams {
80
+ CppHeapCreateParams (
81
+ std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces,
82
+ WrapperDescriptor wrapper_descriptor)
83
+ : custom_spaces(std::move(custom_spaces)),
84
+ wrapper_descriptor (wrapper_descriptor) {}
85
+
86
+ CppHeapCreateParams (const CppHeapCreateParams&) = delete;
87
+ CppHeapCreateParams& operator =(const CppHeapCreateParams&) = delete ;
88
+
80
89
std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces;
81
90
WrapperDescriptor wrapper_descriptor;
82
91
/* *
You can’t perform that action at this time.
0 commit comments