| Index: src/mips64/full-codegen-mips64.cc
 | 
| diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc
 | 
| index ca9fb2ae661d7496b38be66b0ac9eb9c9bda9be6..5fe0c5a6ee9f8e349761b3b0a9e5c2e78a8d6ef8 100644
 | 
| --- a/src/mips64/full-codegen-mips64.cc
 | 
| +++ b/src/mips64/full-codegen-mips64.cc
 | 
| @@ -947,15 +947,15 @@ void FullCodeGenerator::VisitFunctionDeclaration(
 | 
|  
 | 
|  void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* declaration) {
 | 
|    Variable* variable = declaration->proxy()->var();
 | 
| -  Interface* interface = declaration->module()->interface();
 | 
| +  ModuleDescriptor* descriptor = declaration->module()->descriptor();
 | 
|    DCHECK(variable->location() == Variable::CONTEXT);
 | 
| -  DCHECK(interface->IsFrozen());
 | 
| +  DCHECK(descriptor->IsFrozen());
 | 
|    Comment cmnt(masm_, "[ ModuleDeclaration");
 | 
|    EmitDebugCheckDeclarationContext(variable);
 | 
|  
 | 
|    // Load instance object.
 | 
|    __ LoadContext(a1, scope_->ContextChainLength(scope_->ScriptScope()));
 | 
| -  __ ld(a1, ContextOperand(a1, interface->Index()));
 | 
| +  __ ld(a1, ContextOperand(a1, descriptor->Index()));
 | 
|    __ ld(a1, ContextOperand(a1, Context::EXTENSION_INDEX));
 | 
|  
 | 
|    // Assign it.
 | 
| 
 |