-
Notifications
You must be signed in to change notification settings - Fork 30k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src: simplify node modules traverse path #53061
Conversation
6c4dd78
to
168e137
Compare
168e137
to
bd17978
Compare
bd17978
to
c981546
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ends_with
and other C++20 features can probably simplify a lot of code. Good work.
This comment was marked as outdated.
This comment was marked as outdated.
c981546
to
1e3f1cc
Compare
@lemire @guybedford can you review again? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for modernizing this @anonrig!
On a side note, the fact that operator/
is overloaded is hilarious to me 😄
Landed in a7dad43 |
PR-URL: #53061 Reviewed-By: Daniel Lemire <[email protected]> Reviewed-By: Guy Bedford <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
PR-URL: nodejs#53061 Reviewed-By: Daniel Lemire <[email protected]> Reviewed-By: Guy Bedford <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
PR-URL: nodejs#53061 Reviewed-By: Daniel Lemire <[email protected]> Reviewed-By: Guy Bedford <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
Since we now support C++20, we can simplify our
node_modules.cc
implementation withfilesystem
and several C++20 functions.cc @nodejs/cpp-reviewers @GeoffreyBooth @aduh95