-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
luajit substitute for mobdebug.coro #22
Comments
@johnd0e, you mean some special option like This would not only address your concerns/needs, but also enables coroutine debugging for those coroutines that are created with Thoughts? |
Exactly.
I do not like it just because it is redundant entity (in the context of luajit)
Imho this would make things even more complicated (see my concerns about
Great! |
I'm confused. If we do this for LuaJIT, you wouldn't need #18 at all as the debugging would be enables without I'd still need to track for coroutines as you may want to disable debugging with |
In fact I am already doing without #18 (using own
Sure. |
As follows from this discussion, mobdebug makes special actions to forbid debugging of that coroutines, where it was not explicitely enabled with
on()
call (or implicitely viacoro()
)It looks like overkill: forbid debugging in one place, and compensate it by unobvious and tricky
coro
call.I understand that it's all for the sake of uniform module interface.
But what if you make special option for this?
The text was updated successfully, but these errors were encountered: