| Index: src/interpreter/bytecode-generator.cc
|
| diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc
|
| index a3ef2471b6c207c43c35ec6b03e0565821395436..1bf1a3351e42ba00c27f4277072b9c86e8891d23 100644
|
| --- a/src/interpreter/bytecode-generator.cc
|
| +++ b/src/interpreter/bytecode-generator.cc
|
| @@ -1674,7 +1674,7 @@ void BytecodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
| // Deep-copy the literal boilerplate.
|
| uint8_t flags = CreateObjectLiteralFlags::Encode(
|
| expr->IsFastCloningSupported(),
|
| - ConstructorBuiltinsAssembler::FastCloneShallowObjectPropertiesCount(
|
| + ConstructorBuiltins::FastCloneShallowObjectPropertiesCount(
|
| expr->properties_count()),
|
| expr->ComputeFlags());
|
|
|
| @@ -3212,8 +3212,7 @@ void BytecodeGenerator::BuildNewLocalActivationContext() {
|
| } else {
|
| DCHECK(scope->is_function_scope() || scope->is_eval_scope());
|
| int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
|
| - if (slot_count <=
|
| - ConstructorBuiltinsAssembler::MaximumFunctionContextSlots()) {
|
| + if (slot_count <= ConstructorBuiltins::MaximumFunctionContextSlots()) {
|
| switch (scope->scope_type()) {
|
| case EVAL_SCOPE:
|
| builder()->CreateEvalContext(slot_count);
|
|
|