mwaldrich
mwaldrich
Any update on these callbacks?
Thanks for the implementation! I've started playing around with these callbacks, but they don't seem to be called in the way I would expect. I actually have two concerns: 1....
Also, a few more things I noticed: - there are too many `awaitPre` events being generated. ideally, there would be a one-to-one correspondence between `awaitPre` and `awaitPost` events, but there...
I have tried using the new `asyncawait-fix` branch, and it seems to solve the issue of too many `awaitPre` events being generated. However, the `awaitPost` callback still does not provide...
@Haiyang-Sun Even though awaitPre/awaitPost appear in pairs, I don't think they can be tracked in a stack. I think this is because async/await programs, just like ES5 programs with native...
@Haiyang-Sun I see what you're saying, but I think neither queues nor stacks will work. Functions like those in the `fs` library may take lots of time to evaluate, and...
Is there any update on the implementation of the modified `awaitPre` and `awaitPost` callbacks?