| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index de15a7398d7fd8c86242247e778a724153cef8a7..809114dbb665c24a7d60d1cf3f369c97110bdef7 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -1362,12 +1362,12 @@ class JSObject: public HeapObject {
|
| MUST_USE_RESULT MaybeObject* SetProperty(String* key,
|
| Object* value,
|
| PropertyAttributes attributes,
|
| - StrictModeFlag strict);
|
| + StrictModeFlag strict_mode);
|
| MUST_USE_RESULT MaybeObject* SetProperty(LookupResult* result,
|
| String* key,
|
| Object* value,
|
| PropertyAttributes attributes,
|
| - StrictModeFlag strict);
|
| + StrictModeFlag strict_mode);
|
| MUST_USE_RESULT MaybeObject* SetPropertyWithFailedAccessCheck(
|
| LookupResult* result,
|
| String* name,
|
| @@ -1383,12 +1383,12 @@ class JSObject: public HeapObject {
|
| String* name,
|
| Object* value,
|
| PropertyAttributes attributes,
|
| - StrictModeFlag strict);
|
| + StrictModeFlag strict_mode);
|
| MUST_USE_RESULT MaybeObject* SetPropertyPostInterceptor(
|
| String* name,
|
| Object* value,
|
| PropertyAttributes attributes,
|
| - StrictModeFlag strict);
|
| + StrictModeFlag strict_mode);
|
| MUST_USE_RESULT MaybeObject* SetLocalPropertyIgnoreAttributes(
|
| String* key,
|
| Object* value,
|
|
|