| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index dc701d320c3aebd430c6276db582725d3a4d75b5..4578747c89b8c10637bea9722471e24fe295827d 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -3023,7 +3023,7 @@ bool v8::Object::Set(v8::Handle<Value> key, v8::Handle<Value> value,
|
| key_obj,
|
| value_obj,
|
| static_cast<PropertyAttributes>(attribs),
|
| - i::kSloppyMode);
|
| + i::SLOPPY);
|
| has_pending_exception = obj.is_null();
|
| EXCEPTION_BAILOUT_CHECK(isolate, false);
|
| return true;
|
| @@ -3043,7 +3043,7 @@ bool v8::Object::Set(uint32_t index, v8::Handle<Value> value) {
|
| index,
|
| value_obj,
|
| NONE,
|
| - i::kSloppyMode);
|
| + i::SLOPPY);
|
| has_pending_exception = obj.is_null();
|
| EXCEPTION_BAILOUT_CHECK(isolate, false);
|
| return true;
|
|
|