| Index: src/full-codegen/mips/full-codegen-mips.cc
|
| diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc
|
| index a8f443ecf0192a0c1b9ab1d7cee488f594334e1b..f9d4dc87302bb5ca6fff8a8b49d4d4ff329cc34d 100644
|
| --- a/src/full-codegen/mips/full-codegen-mips.cc
|
| +++ b/src/full-codegen/mips/full-codegen-mips.cc
|
| @@ -2172,10 +2172,10 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var, Token::Value op,
|
| __ CallRuntime(Runtime::kThrowReferenceError);
|
| __ bind(&assign);
|
| }
|
| - if (var->mode() == CONST) {
|
| - __ CallRuntime(Runtime::kThrowConstAssignError);
|
| - } else {
|
| + if (var->mode() != CONST) {
|
| EmitStoreToStackLocalOrContextSlot(var, location);
|
| + } else if (var->throw_on_const_assignment(language_mode())) {
|
| + __ CallRuntime(Runtime::kThrowConstAssignError);
|
| }
|
| } else if (var->is_this() && var->mode() == CONST && op == Token::INIT) {
|
| // Initializing assignment to const {this} needs a write barrier.
|
| @@ -2191,7 +2191,8 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var, Token::Value op,
|
| __ bind(&uninitialized_this);
|
| EmitStoreToStackLocalOrContextSlot(var, location);
|
|
|
| - } else if (!var->is_const_mode() || op == Token::INIT) {
|
| + } else {
|
| + DCHECK(var->mode() != CONST || op == Token::INIT);
|
| if (var->IsLookupSlot()) {
|
| // Assignment to var.
|
| __ Push(var->name());
|
| @@ -2212,13 +2213,6 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var, Token::Value op,
|
| }
|
| EmitStoreToStackLocalOrContextSlot(var, location);
|
| }
|
| -
|
| - } else {
|
| - DCHECK(var->mode() == CONST_LEGACY && op != Token::INIT);
|
| - if (is_strict(language_mode())) {
|
| - __ CallRuntime(Runtime::kThrowConstAssignError);
|
| - }
|
| - // Silently ignore store in sloppy mode.
|
| }
|
| }
|
|
|
|
|