Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index cf9184ffe128f7da53051fe2939ee2e13a057f9d..d02017b77d854200dd4198a1b4329c71c1e8399a 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -10749,6 +10749,7 @@ class FunctionTemplateInfo: public TemplateInfo { |
DECL_BOOLEAN_ACCESSORS(remove_prototype) |
DECL_BOOLEAN_ACCESSORS(do_not_cache) |
DECL_BOOLEAN_ACCESSORS(instantiated) |
+ DECL_BOOLEAN_ACCESSORS(accept_any_receiver) |
DECLARE_CAST(FunctionTemplateInfo) |
@@ -10794,6 +10795,7 @@ class FunctionTemplateInfo: public TemplateInfo { |
static const int kRemovePrototypeBit = 4; |
static const int kDoNotCacheBit = 5; |
static const int kInstantiatedBit = 6; |
+ static const int kAcceptAnyReceiver = 7; |
DISALLOW_IMPLICIT_CONSTRUCTORS(FunctionTemplateInfo); |
}; |