Skip to content

Commit f1e0b83

Browse files
committed
deps: update V8 to 14.6.202.33
PR-URL: #61898 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Filip Skokan <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]>
1 parent 9c4ca0a commit f1e0b83

2,782 files changed

Lines changed: 166436 additions & 92882 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 <[email protected]>
272272
Ross Kirsling <[email protected]>
273273
Ruben Bridgewater <[email protected]>
274274
Ryan Dahl <[email protected]>
275+
Sahil Shaikh <[email protected]>
275276
Sakthipriyan Vairamani (thefourtheye) <[email protected]>
276277
Sander Mathijs van Veen <[email protected]>
277278
Sandro Santilli <[email protected]>
@@ -340,6 +341,7 @@ Zhao Jiazhong <[email protected]>
340341
341342
Zhaojun Meng <[email protected]>
342343
Zheng Liu <[email protected]>
344+
Zhongqi Wang <[email protected]>
343345
Zhongping Wang <[email protected]>
344346
柳荣一 <[email protected]>
345347
Yang Xiang <[email protected]>

0 commit comments

Comments
 (0)