diff options
Diffstat (limited to 'JavaScriptCore/bindings/runtime_array.h')
-rw-r--r-- | JavaScriptCore/bindings/runtime_array.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/JavaScriptCore/bindings/runtime_array.h b/JavaScriptCore/bindings/runtime_array.h index 74b540f..2182b31 100644 --- a/JavaScriptCore/bindings/runtime_array.h +++ b/JavaScriptCore/bindings/runtime_array.h @@ -39,8 +39,8 @@ public: virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&); virtual bool getOwnPropertySlot(ExecState *, unsigned, PropertySlot&); - virtual void put(ExecState *exec, const Identifier &propertyName, JSValue *value); - virtual void put(ExecState *exec, unsigned propertyName, JSValue *value); + virtual void put(ExecState *exec, const Identifier &propertyName, JSValue *value, int attr = None); + virtual void put(ExecState *exec, unsigned propertyName, JSValue *value, int attr = None); virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName); virtual bool deleteProperty(ExecState *exec, unsigned propertyName); |