Skip to content

Commit cc54742

Browse files
targosRafaelGSS
authored andcommitted
deps: update V8 to 14.6.202.33
PR-URL: #61898 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> (cherry picked from commit f1e0b83)
1 parent 0c08835 commit cc54742

2,781 files changed

Lines changed: 166416 additions & 92789 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

deps/v8/.clang-format

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ Macros:
1414
- CASE_=case
1515
- FOR_WITH_HANDLE_SCOPE(isolate, init, loop_var, limit_check, increment)=for(init; loop_var; increment)
1616
- WHILE_WITH_HANDLE_SCOPE(isolate, limit_check)=while(limit_check)
17+
# Make clang-format parse conditions in flag implications as expressions, not type definitions.
18+
- DEFINE_IMPLICATION(cond,flag,value)=if(cond) { flag; };
19+
- DEFINE_WEAK_IMPLICATION(cond,flag,value)=if(cond) { flag; };
20+
- DEFINE_VALUE_IMPLICATION(cond,flag,value)=if(cond) { flag = value; };
21+
- DEFINE_WEAK_VALUE_IMPLICATION(cond,flag,value)=if(cond) { flag = value; };
1722
StatementMacros:
1823
- DECL_CAST
1924
- DECL_VERIFIER

deps/v8/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ bazel-out
155155
bazel-testlogs
156156
bazel-v8
157157
launch.json
158+
MODULE.bazel.lock
158159
!/third_party/jinja2
159160
!/third_party/markupsafe
160161
!/third_party/zlib

deps/v8/.gn

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ default_args = {
3636

3737
# Use Siso instead of Ninja.
3838
use_siso = true
39+
40+
# V8 should stay in C++20 for now.
41+
use_cxx23 = false
3942
}
4043

4144
# These are the list of GN files that run exec_script. This whitelist exists

deps/v8/AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ Rong Wang <wangrong089@gmail.com>
272272
Ross Kirsling <rkirsling@gmail.com>
273273
Ruben Bridgewater <ruben@bridgewater.de>
274274
Ryan Dahl <ry@tinyclouds.org>
275+
Sahil Shaikh <shaikhsahil4883@gmail.com>
275276
Sakthipriyan Vairamani (thefourtheye) <thechargingvolcano@gmail.com>
276277
Sander Mathijs van Veen <sander@leaningtech.com>
277278
Sandro Santilli <strk@keybit.net>
@@ -340,6 +341,7 @@ Zhao Jiazhong <kyslie3100@gmail.com>
340341
Zhao Qin <qzmiss@gmail.com>
341342
Zhaojun Meng <zhaojun.meng@gmail.com>
342343
Zheng Liu <i6122f@gmail.com>
344+
Zhongqi Wang <wzq2253675767@gmail.com>
343345
Zhongping Wang <kewpie.w.zp@gmail.com>
344346
柳荣一 <admin@web-tinker.com>
345347
Yang Xiang <xiangyangemail@gmail.com>

0 commit comments

Comments
 (0)