| Index: src/full-codegen/arm/full-codegen-arm.cc
|
| diff --git a/src/full-codegen/arm/full-codegen-arm.cc b/src/full-codegen/arm/full-codegen-arm.cc
|
| index aeb869ea94e05ee72d52245dabeb993eaca52959..dfddd9e0add83010c05480ab6cc9e9cc6b1926a3 100644
|
| --- a/src/full-codegen/arm/full-codegen-arm.cc
|
| +++ b/src/full-codegen/arm/full-codegen-arm.cc
|
| @@ -3063,7 +3063,7 @@ void FullCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) {
|
| Variable* var = proxy->var();
|
| // Delete of an unqualified identifier is disallowed in strict mode but
|
| // "delete this" is allowed.
|
| - bool is_this = var->HasThisName(isolate());
|
| + bool is_this = var->is_this();
|
| DCHECK(is_sloppy(language_mode()) || is_this);
|
| if (var->IsUnallocatedOrGlobalSlot()) {
|
| __ LoadGlobalObject(r2);
|
|
|