-
Notifications
You must be signed in to change notification settings - Fork 30.2k
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: clean up stream_base.h and stream-base-inl.h #32307
Conversation
0f6ef69
to
ac42fe6
Compare
Signed-off-by: James M Snell <[email protected]>
ff51b55
to
098cbcf
Compare
@nodejs/collaborators would be awesome to get another review on this one if possible. |
@@ -46,8 +46,10 @@ using v8::HandleScope; | |||
using v8::Local; | |||
using v8::MaybeLocal; | |||
using v8::Object; | |||
using v8::PropertyAttribute; |
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.
addtional for quic?
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.
No, there's one use of PropertyAttribute
elsewhere in the file. This was previously being inherited from the stream_base.h headers.
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
Signed-off-by: James M Snell <[email protected]> PR-URL: #32307 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Jiawen Geng <[email protected]>
Landed in ffdf1de |
Signed-off-by: James M Snell <[email protected]> PR-URL: #32307 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Jiawen Geng <[email protected]>
Signed-off-by: James M Snell <[email protected]> PR-URL: #32307 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Jiawen Geng <[email protected]>
stream_base.h and stream_base-inl.h have always been a bit of a mess with regards to inlines,
v8::
scopes, and more. This is the first step at a cleanup.Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes