| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
Sorry, something went wrong.
Commit Queue failed- Loading data for nodejs/node/pull/43330 ✔ Done loading data for nodejs/node/pull/43330 ----------------------------------- PR info ------------------------------------ Title perf_hooks: fix function wrapped by performance.timerify to work correctly (#43330) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch cola119:issue-40623 -> nodejs:master Labels c++, author ready, perf_hooks, needs-ci, commit-queue-squash Commits 2 - perf_hooks: fix function wrapped by timerify to work correctly - fixup! perf_hooks: fix function wrapped by timerify to work correctly Committers 2 - cola119 - GitHub PR-URL: https://github.com/nodejs/node/pull/43330 Reviewed-By: Antoine du Hamel Reviewed-By: Darshan Sen Reviewed-By: Minwoo Jung Reviewed-By: James M Snell ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/43330 Reviewed-By: Antoine du Hamel Reviewed-By: Darshan Sen Reviewed-By: Minwoo Jung Reviewed-By: James M Snell -------------------------------------------------------------------------------- ℹ This PR was created on Mon, 06 Jun 2022 14:18:45 GMT ✔ Approvals: 4 ✔ - Antoine du Hamel (@aduh95) (TSC): https://github.com/nodejs/node/pull/43330#pullrequestreview-998895212 ✔ - Darshan Sen (@RaisinTen) (TSC): https://github.com/nodejs/node/pull/43330#pullrequestreview-999103530 ✔ - Minwoo Jung (@JungMinu): https://github.com/nodejs/node/pull/43330#pullrequestreview-1001101980 ✔ - James M Snell (@jasnell) (TSC): https://github.com/nodejs/node/pull/43330#pullrequestreview-1003513143 ✖ Last GitHub CI failed ℹ Last Full PR CI on 2022-06-08T04:36:30Z: https://ci.nodejs.org/job/node-test-pull-request/44403/ - Querying data for job/node-test-pull-request/44403/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/2483034882 |
Sorry, something went wrong.
PR-URL: #43330 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #43330 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #43330 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: nodejs/node#43330 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
| Back | FazBrowse Home | New Git URL |
Fixed #40623
(#40625 also fixes this issue but it has been stale and seems not expected to be updated.)
This issue introduced by the refactoring on #37136. The previous implementation was checking whether a function or class is called using the new operator to proxy a function call.
node/src/node_perf.cc
Lines 380 to 393 in 74227bb
This PR fixed to align with the previous behavior that a function works the same as if it was called directly.