Tom Wenzheng Tang
Tom Wenzheng Tang
Might be solved by https://github.com/Distributive-Network/PythonMonkey/issues/208
See also https://github.com/Distributive-Network/PythonMonkey/issues/295
@YarnSaw Can you repro to see if it has been fixed by https://github.com/Distributive-Network/PythonMonkey/pull/323?
I think we are good to close this issue.
Hold on. Despite the CI passes, I've found some bugs need to be addressed.
Hold on. Despite the CI passes, I've found some bugs need to be addressed.
This PR was put on hold because there were bugs in the event-loop code. Let me see if the bugs have already been fixed.
This PR was put on hold because there were bugs in the event-loop code. Let me see if the bugs have already been fixed.
~~@wesgarland Is this PR needed for the v1.0 release?~~ uncaughtExceptionHandler is indeed needed for situations like ```js async function main() { throw new TypeError("abc") } main() ``` Prints out ```console...
There is still a problem that needs to be addressed (maybe in a separate PR). ```js new Promise(function (resolve, reject) { reject(new Error('abc')); }); new Promise(function (resolve, reject) { });...