Index: src/handles.h |
diff --git a/src/handles.h b/src/handles.h |
index 8f1664bb4e00b8e108a1b1a0908c634ac3dac938..c4e9925a1ce94b8ecb8cd3f1af00dcb3fc1f519e 100644 |
--- a/src/handles.h |
+++ b/src/handles.h |
@@ -246,12 +246,14 @@ Handle<String> FlattenGetString(Handle<String> str); |
Handle<Object> SetProperty(Handle<JSObject> object, |
Handle<String> key, |
Handle<Object> value, |
- PropertyAttributes attributes); |
+ PropertyAttributes attributes, |
+ StrictModeFlag strict); |
Handle<Object> SetProperty(Handle<Object> object, |
Handle<Object> key, |
Handle<Object> value, |
- PropertyAttributes attributes); |
+ PropertyAttributes attributes, |
+ StrictModeFlag strict); |
Handle<Object> ForceSetProperty(Handle<JSObject> object, |
Handle<Object> key, |
@@ -282,7 +284,8 @@ void SetLocalPropertyNoThrow(Handle<JSObject> object, |
Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object, |
Handle<String> key, |
Handle<Object> value, |
- PropertyAttributes attributes); |
+ PropertyAttributes attributes, |
+ StrictModeFlag strict); |
Handle<Object> SetElement(Handle<JSObject> object, |
uint32_t index, |