| Index: src/objects.h
|
| ===================================================================
|
| --- src/objects.h (revision 3879)
|
| +++ src/objects.h (working copy)
|
| @@ -1540,8 +1540,6 @@
|
|
|
| Object* GetElementWithInterceptor(JSObject* receiver, uint32_t index);
|
|
|
| - bool HasSetter();
|
| -
|
| private:
|
| Object* SetElementWithInterceptor(uint32_t index, Object* value);
|
| Object* SetElementWithoutInterceptor(uint32_t index, Object* value);
|
| @@ -3236,6 +3234,10 @@
|
| inline bool try_full_codegen();
|
| inline void set_try_full_codegen(bool flag);
|
|
|
| + // Check whether a inlined constructor can be generated with the given
|
| + // prototype.
|
| + bool CanGenerateInlineConstructor(Object* prototype);
|
| +
|
| // For functions which only contains this property assignments this provides
|
| // access to the names for the properties assigned.
|
| DECL_ACCESSORS(this_property_assignments, Object)
|
|
|