| Index: src/handles.cc
|
| diff --git a/src/handles.cc b/src/handles.cc
|
| index 05c81bb3f5241882cdddeed73331fcf4b1280c54..d91855c1d756b9097f211e477464bb8ca082ea2a 100644
|
| --- a/src/handles.cc
|
| +++ b/src/handles.cc
|
| @@ -243,8 +243,8 @@ Handle<Object> SetProperty(Handle<JSObject> object,
|
| Handle<String> key,
|
| Handle<Object> value,
|
| PropertyAttributes attributes,
|
| - StrictModeFlag strict) {
|
| - CALL_HEAP_FUNCTION(object->SetProperty(*key, *value, attributes, strict),
|
| + StrictModeFlag strict_mode) {
|
| + CALL_HEAP_FUNCTION(object->SetProperty(*key, *value, attributes, strict_mode),
|
| Object);
|
| }
|
|
|
| @@ -253,9 +253,9 @@ Handle<Object> SetProperty(Handle<Object> object,
|
| Handle<Object> key,
|
| Handle<Object> value,
|
| PropertyAttributes attributes,
|
| - StrictModeFlag strict) {
|
| + StrictModeFlag strict_mode) {
|
| CALL_HEAP_FUNCTION(
|
| - Runtime::SetObjectProperty(object, key, value, attributes, strict),
|
| + Runtime::SetObjectProperty(object, key, value, attributes, strict_mode),
|
| Object);
|
| }
|
|
|
| @@ -309,11 +309,11 @@ Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object,
|
| Handle<String> key,
|
| Handle<Object> value,
|
| PropertyAttributes attributes,
|
| - StrictModeFlag strict) {
|
| + StrictModeFlag strict_mode) {
|
| CALL_HEAP_FUNCTION(object->SetPropertyWithInterceptor(*key,
|
| *value,
|
| attributes,
|
| - strict),
|
| + strict_mode),
|
| Object);
|
| }
|
|
|
|
|