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.10 ' ,
39
+ 'v8_embedder_string' : '-node.11 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -1527,8 +1527,8 @@ base::Optional<PropertyCell> ConcurrentLookupIterator::TryGetPropertyCell(
1527
1527
DisallowGarbageCollection no_gc;
1528
1528
1529
1529
Map holder_map = holder->map ();
1530
- CHECK (! holder_map.is_access_check_needed ());
1531
- CHECK (! holder_map.has_named_interceptor ());
1530
+ if ( holder_map.is_access_check_needed ()) return {} ;
1531
+ if ( holder_map.has_named_interceptor ()) return {} ;
1532
1532
1533
1533
GlobalDictionary dict = holder->global_dictionary (kAcquireLoad );
1534
1534
base::Optional<PropertyCell> cell =
You can’t perform that action at this time.
0 commit comments