-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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 <jasnell@gmail.com>
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 <jasnell@gmail.com> PR-URL: #32307 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Landed in ffdf1de |
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #32307 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #32307 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
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