src: change SetEncodedValue to return Maybe<void>#54443
src: change SetEncodedValue to return Maybe<void>#54443nodejs-github-bot merged 1 commit intonodejs:mainfrom
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. |
|
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.