| Index: src/handles.cc
|
| diff --git a/src/handles.cc b/src/handles.cc
|
| index b023201f4f781aaec9cc31940acc9103f5467fd0..99161ce7338c90dd5e6673428773f40b7e81d976 100644
|
| --- a/src/handles.cc
|
| +++ b/src/handles.cc
|
| @@ -212,6 +212,15 @@ Handle<Object> SetProperty(Handle<Object> object,
|
| }
|
|
|
|
|
| +Handle<Object> ForceSetProperty(Handle<JSObject> object,
|
| + Handle<Object> key,
|
| + Handle<Object> value,
|
| + PropertyAttributes attributes) {
|
| + CALL_HEAP_FUNCTION(
|
| + Runtime::ForceSetObjectProperty(object, key, value, attributes), Object);
|
| +}
|
| +
|
| +
|
| Handle<Object> IgnoreAttributesAndSetLocalProperty(
|
| Handle<JSObject> object,
|
| Handle<String> key,
|
|
|