diff options
Diffstat (limited to 'deps/v8/src/compiler/js-create-lowering.cc')
-rw-r--r-- | deps/v8/src/compiler/js-create-lowering.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/compiler/js-create-lowering.cc b/deps/v8/src/compiler/js-create-lowering.cc index 50a523c606..7875ae6be9 100644 --- a/deps/v8/src/compiler/js-create-lowering.cc +++ b/deps/v8/src/compiler/js-create-lowering.cc @@ -1712,7 +1712,7 @@ base::Optional<Node*> JSCreateLowering::TryAllocateFastLiteral( PropertyDetails const property_details = boilerplate_map.GetPropertyDetails(i); if (property_details.location() != PropertyLocation::kField) continue; - DCHECK_EQ(kData, property_details.kind()); + DCHECK_EQ(PropertyKind::kData, property_details.kind()); if ((*max_properties)-- == 0) return {}; NameRef property_name = boilerplate_map.GetPropertyKey(i); |