| Index: src/interpreter/bytecode-generator.cc
|
| diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc
|
| index 83a2ae21a6450a4154af6c56d04dfba3c00e22a4..dfe3afbd8b32a4df9cb706c74c818943a71e2149 100644
|
| --- a/src/interpreter/bytecode-generator.cc
|
| +++ b/src/interpreter/bytecode-generator.cc
|
| @@ -2933,6 +2933,9 @@ void BytecodeGenerator::BuildNewLocalActivationContext() {
|
| .LoadLiteral(scope->scope_info())
|
| .StoreAccumulatorInRegister(args[2])
|
| .CallRuntime(Runtime::kPushModuleContext, args);
|
| + } else if (scope->is_eval_scope()) {
|
| + int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
|
| + builder()->CreateEvalContext(slot_count);
|
| } else {
|
| int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
|
| if (slot_count <= FastNewFunctionContextStub::kMaximumSlots) {
|
|
|