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
The implementation of coroutine.Yiled is a call to coroutine.LoadContext followed by a call to the Yield method on the returned coroutine context. However, the generated coroutine code makes a call to coroutine.LoadContext when entering a function, in each coroutine the context is already available as a local variable, which means that we are making an extra call to coroutine.LoadContext in coroutine.Yield that could be replaced by a direct method call on the context that we already loaded.
The text was updated successfully, but these errors were encountered:
The implementation of
coroutine.Yiled
is a call tocoroutine.LoadContext
followed by a call to theYield
method on the returned coroutine context. However, the generated coroutine code makes a call tocoroutine.LoadContext
when entering a function, in each coroutine the context is already available as a local variable, which means that we are making an extra call tocoroutine.LoadContext
incoroutine.Yield
that could be replaced by a direct method call on the context that we already loaded.The text was updated successfully, but these errors were encountered: