| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index b2dc1816f8ef6ceb4bd25ef6572c6c04d0c8b399..521ac685f4401b37625f0c38547c94b22899172a 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -9839,6 +9839,7 @@ class FunctionTemplateInfo: public TemplateInfo {
|
| // requires access check.
|
| DECL_BOOLEAN_ACCESSORS(needs_access_check)
|
| DECL_BOOLEAN_ACCESSORS(read_only_prototype)
|
| + DECL_BOOLEAN_ACCESSORS(remove_prototype)
|
|
|
| static inline FunctionTemplateInfo* cast(Object* obj);
|
|
|
| @@ -9874,6 +9875,7 @@ class FunctionTemplateInfo: public TemplateInfo {
|
| static const int kUndetectableBit = 1;
|
| static const int kNeedsAccessCheckBit = 2;
|
| static const int kReadOnlyPrototypeBit = 3;
|
| + static const int kRemovePrototypeBit = 4;
|
|
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(FunctionTemplateInfo);
|
| };
|
|
|