This repository was archived by the owner on Mar 31, 2018. It is now read-only.
This repository was archived by the owner on Mar 31, 2018. It is now read-only.
Async/Await implementation in V8 #4
Closed
Description
Async await is coming our way with v8 slated to implement it in Q2 2016.
Node needs to be prepared :)
Possible areas of impact:
- V8's implementation needs to be tracked so we make sure we have our right hooks when it lands. Things like
unhandledRejection
might possibly be impacted as well as the way promises are currently queued and run in Node. - We need to consider the whole operational vs. programmer error issue here.
- Core dumps should work properly in async methods.
Probably many others, just starting the discussion.