You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// As of today, all expressions which were scheduled via Runtime.evaluate method are not going through RuntimeScheduler
167
+
// This means that the task is not being placed on the Event Loop, and any transitively called Microtasks are not executed properly
168
+
// We are wrapping the expression in setTimeout to make sure that this code (and everything what is called by it) goes through the Event Loop implementation
169
+
// See T200616136 for more context
170
+
// TODO(hoxyq): remove setTimeout once Runtime.evaluate expressions are passed through React Native Runtime Scheduler
0 commit comments