File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 3737
3838 # Reset this number to 0 on major V8 upgrades.
3939 # Increment by one for each non-official patch applied to deps/v8.
40- 'v8_embedder_string' : '-node.3 ' ,
40+ 'v8_embedder_string' : '-node.4 ' ,
4141
4242 ##### V8 defaults for Node.js #####
4343
Original file line number Diff line number Diff line change @@ -6779,7 +6779,7 @@ class V8_EXPORT MicrotaskQueue {
67796779 /* *
67806780 * Creates an empty MicrotaskQueue instance.
67816781 */
6782- static std::unique_ptr<MicrotaskQueue> New ();
6782+ static std::unique_ptr<MicrotaskQueue> New (Isolate* isolate );
67836783
67846784 virtual ~MicrotaskQueue () = default ;
67856785
Original file line number Diff line number Diff line change @@ -8931,6 +8931,11 @@ void v8::Isolate::LocaleConfigurationChangeNotification() {
89318931#endif // V8_INTL_SUPPORT
89328932}
89338933
8934+ // static
8935+ std::unique_ptr<MicrotaskQueue> MicrotaskQueue::New (Isolate* isolate) {
8936+ return i::MicrotaskQueue::New (reinterpret_cast <i::Isolate*>(isolate));
8937+ }
8938+
89348939MicrotasksScope::MicrotasksScope (Isolate* isolate, MicrotasksScope::Type type)
89358940 : MicrotasksScope(
89368941 isolate,
You can’t perform that action at this time.
0 commit comments