Index: src/handles.h |
diff --git a/src/handles.h b/src/handles.h |
index 8fd25dc9ef56f6d66517fd290cd7a9e5bfa0b24a..1816db7c2a0faa009b408be4e45269dca75bfec6 100644 |
--- a/src/handles.h |
+++ b/src/handles.h |
@@ -217,9 +217,10 @@ Handle<Object> SetNormalizedProperty(Handle<JSObject> object, |
Handle<Object> ForceDeleteProperty(Handle<JSObject> object, |
Handle<Object> key); |
-Handle<Object> IgnoreAttributesAndSetLocalProperty(Handle<JSObject> object, |
- Handle<String> key, |
- Handle<Object> value, |
+Handle<Object> IgnoreAttributesAndSetLocalProperty( |
fschneider
2011/01/06 13:36:24
Maybe the name should rather be SetLocalPropertyAn
Lasse Reichstein
2011/01/06 13:55:51
Changed to SetLocalPropertyIgnoreAttributes. Shoul
|
+ Handle<JSObject> object, |
+ Handle<String> key, |
+ Handle<Object> value, |
PropertyAttributes attributes); |
Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object, |
@@ -231,6 +232,10 @@ Handle<Object> SetElement(Handle<JSObject> object, |
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); |