| Index: src/handles.h
|
| ===================================================================
|
| --- src/handles.h (revision 6941)
|
| +++ src/handles.h (working copy)
|
| @@ -196,9 +196,10 @@
|
| Handle<Object> ForceDeleteProperty(Handle<JSObject> object,
|
| Handle<Object> key);
|
|
|
| -Handle<Object> IgnoreAttributesAndSetLocalProperty(Handle<JSObject> object,
|
| - Handle<String> key,
|
| - Handle<Object> value,
|
| +Handle<Object> SetLocalPropertyIgnoreAttributes(
|
| + Handle<JSObject> object,
|
| + Handle<String> key,
|
| + Handle<Object> value,
|
| PropertyAttributes attributes);
|
|
|
| Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object,
|
| @@ -210,6 +211,10 @@
|
| uint32_t index,
|
| Handle<Object> value);
|
|
|
| +Handle<Object> SetOwnElement(Handle<JSObject> object,
|
| + uint32_t index,
|
| + Handle<Object> value);
|
| +
|
| Handle<Object> GetProperty(Handle<JSObject> obj,
|
| const char* name);
|
|
|
|
|