| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
@BethGriggs I took the liberty of updating PR title. |
Sorry, something went wrong.
|
so it seems like the work from this PR ended up getting wrapped into another backport that has already landed. Thanks for putting the time into this @BethGriggs, fun to run into you in the PR tracker 😄 |
Sorry, something went wrong.
|
@MylesBorins Is that true? The changes to the first file were just var->const, and they went into a different PR, but the changes to the other files don't seem to have gone into v6.x-staging, e.g. test-timers-uncaught-exception.js on v6.x-staging. e.g. this diff: -console.error('set first timer');
-setTimeout(function() {
- console.error('first timer');
- timer1++;
- throw new Error('BAM!');
-}, 100);
+setTimeout(common.mustCall(function() {
+ throw new Error(errorMsg);
+}), 1); |
Sorry, something went wrong.
Change var to const/let. Simplify test-timers-uncaught-exception. PR-URL: nodejs#10524 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Sorry, something went wrong.
Sorry, something went wrong.
Change var to const/let. Simplify test-timers-uncaught-exception. Backport-PR-URL: nodejs/node#12401 PR-URL: nodejs/node#10524 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
| Back | FazBrowse Home | New Git URL |
Change var to const/let. Simplify test-timers-uncaught-exception.
PR-URL: #10524
Reviewed-By: James M Snell jasnell@gmail.com
Reviewed-By: Gibson Fahnestock gibfahn@gmail.com
Reviewed-By: Jeremiah Senkpiel fishrock123@rocketmail.com
Checklist
Affected core subsystem(s)
Test
/cc @gibfahn