-
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: change SetEncodedValue to return Maybe<void> #54443
src: change SetEncodedValue to return Maybe<void> #54443
Conversation
With recent versions of V8, it is not necessary to use Maybe<bool> anymore. This changes SetEncodedValue to return Maybe<void> instead.
Review requested:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #54443 +/- ##
==========================================
- Coverage 87.33% 87.27% -0.06%
==========================================
Files 648 648
Lines 182321 182317 -4
Branches 34971 34961 -10
==========================================
- Hits 159222 159114 -108
- Misses 16374 16470 +96
- Partials 6725 6733 +8
|
@tniessen this PR relies on the v8 version on 22 so its a not land on v20 correct? |
This comment was marked as outdated.
This comment was marked as outdated.
@marco-ippolito I am not sure. According to v8docs, |
this commit cd39578 I had to remove since it was not compiling on v20.x-staging. |
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
Landed in c6a72f2 |
With recent versions of V8, it is not necessary to use Maybe<bool> anymore. This changes SetEncodedValue to return Maybe<void> instead. PR-URL: #54443 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com>
With recent versions of V8, it is not necessary to use Maybe<bool> anymore. This changes SetEncodedValue to return Maybe<void> instead. PR-URL: #54443 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com>
With recent versions of V8, it is not necessary to use Maybe<bool> anymore. This changes SetEncodedValue to return Maybe<void> instead. PR-URL: nodejs#54443 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com>
With recent versions of V8, it is not necessary to use
Maybe<bool>
anymore. This changesSetEncodedValue()
to returnMaybe<void>
instead.