File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 37
37
38
38
# Reset this number to 0 on major V8 upgrades.
39
39
# Increment by one for each non-official patch applied to deps/v8.
40
- 'v8_embedder_string' : '-node.3 ' ,
40
+ 'v8_embedder_string' : '-node.4 ' ,
41
41
42
42
##### V8 defaults for Node.js #####
43
43
Original file line number Diff line number Diff line change @@ -6779,7 +6779,7 @@ class V8_EXPORT MicrotaskQueue {
6779
6779
/* *
6780
6780
* Creates an empty MicrotaskQueue instance.
6781
6781
*/
6782
- static std::unique_ptr<MicrotaskQueue> New ();
6782
+ static std::unique_ptr<MicrotaskQueue> New (Isolate* isolate );
6783
6783
6784
6784
virtual ~MicrotaskQueue () = default ;
6785
6785
Original file line number Diff line number Diff line change @@ -8931,6 +8931,11 @@ void v8::Isolate::LocaleConfigurationChangeNotification() {
8931
8931
#endif // V8_INTL_SUPPORT
8932
8932
}
8933
8933
8934
+ // static
8935
+ std::unique_ptr<MicrotaskQueue> MicrotaskQueue::New(Isolate* isolate) {
8936
+ return i::MicrotaskQueue::New(reinterpret_cast<i::Isolate*>(isolate));
8937
+ }
8938
+
8934
8939
MicrotasksScope::MicrotasksScope(Isolate* isolate, MicrotasksScope::Type type)
8935
8940
: MicrotasksScope(
8936
8941
isolate,
You can’t perform that action at this time.
0 commit comments