We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b100d0 commit b05e832Copy full SHA for b05e832
NativeScript/runtime/Runtime.mm
@@ -203,7 +203,7 @@ void DisposeIsolateWhenPossible(Isolate* isolate) {
203
tns::ToV8String(isolate, "queueMicrotask: callback must be a function")));
204
return;
205
}
206
- Local<Function> cb = info[0].As<Function>();
+ v8::Local<v8::Function> cb = info[0].As<v8::Function>();
207
isolate->EnqueueMicrotask(cb);
208
});
209
globalTemplate->Set(tns::ToV8String(isolate, "queueMicrotask"), qmtTemplate);
0 commit comments