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
Luau supports continuations in its C API (see pushcclosurek's lua_Continuation argument as one place where it's supported). It would be nice if this was exposed somehow in mlua both as Luau's APIs seem to be increasingly expecting callers to have support for these (especially things like yielding require by string)
In addition, continuations could be useful for implementing concurrency primitives more performantly etc (such as custom task schedulers)