File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 27
27
#include " node_buffer.h"
28
28
#include " node_errors.h"
29
29
#include " node_internals.h"
30
+ #include " node_snapshot_builder.h"
30
31
#include " node_v8_platform-inl.h"
31
32
#include " string_bytes.h"
32
33
#include " uv.h"
@@ -677,13 +678,16 @@ Local<String> UnionBytes::ToStringChecked(Isolate* isolate) const {
677
678
}
678
679
}
679
680
680
- RAIIIsolate::RAIIIsolate ()
681
+ RAIIIsolate::RAIIIsolate (const SnapshotData* data )
681
682
: allocator_{ArrayBuffer::Allocator::NewDefaultAllocator ()} {
682
683
isolate_ = Isolate::Allocate ();
683
684
CHECK_NOT_NULL (isolate_);
684
685
per_process::v8_platform.Platform ()->RegisterIsolate (isolate_,
685
686
uv_default_loop ());
686
687
Isolate::CreateParams params;
688
+ if (data != nullptr ) {
689
+ SnapshotBuilder::InitializeIsolateParams (data, ¶ms);
690
+ }
687
691
params.array_buffer_allocator = allocator_.get ();
688
692
Isolate::Initialize (isolate_, params);
689
693
}
Original file line number Diff line number Diff line change @@ -971,7 +971,7 @@ void SetConstructorFunction(v8::Isolate* isolate,
971
971
// Simple RAII class to spin up a v8::Isolate instance.
972
972
class RAIIIsolate {
973
973
public:
974
- RAIIIsolate ();
974
+ explicit RAIIIsolate (const SnapshotData* data = nullptr );
975
975
~RAIIIsolate ();
976
976
977
977
v8::Isolate* get () const { return isolate_; }
You can’t perform that action at this time.
0 commit comments