File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 36
36
37
37
# Reset this number to 0 on major V8 upgrades.
38
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string' : '-node.18 ' ,
39
+ 'v8_embedder_string' : '-node.19 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -2301,7 +2301,9 @@ bool MarkCompactCollector::TransitionArrayNeedsCompaction(
2301
2301
#ifdef DEBUG
2302
2302
// Targets can only be dead iff this array is fully deserialized.
2303
2303
for (int i = 0 ; i < num_transitions; ++i) {
2304
- DCHECK (!non_atomic_marking_state ()->IsWhite (transitions.GetTarget (i)));
2304
+ DCHECK_IMPLIES (
2305
+ !transitions.GetRawTarget (i).IsSmi (),
2306
+ !non_atomic_marking_state ()->IsWhite (transitions.GetTarget (i)));
2305
2307
}
2306
2308
#endif
2307
2309
return false ;
You can’t perform that action at this time.
0 commit comments