File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
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.11 ' ,
39
+ 'v8_embedder_string' : '-node.12 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -1518,8 +1518,8 @@ base::Optional<PropertyCell> ConcurrentLookupIterator::TryGetPropertyCell(
1518
1518
DisallowGarbageCollection no_gc;
1519
1519
1520
1520
Map holder_map = holder->map ();
1521
- CHECK (! holder_map.is_access_check_needed ());
1522
- CHECK (! holder_map.has_named_interceptor ());
1521
+ if ( holder_map.is_access_check_needed ()) return {} ;
1522
+ if ( holder_map.has_named_interceptor ()) return {} ;
1523
1523
1524
1524
GlobalDictionary dict = holder->global_dictionary (kAcquireLoad );
1525
1525
base::Optional<PropertyCell> cell =
You can’t perform that action at this time.
0 commit comments