Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index ccc36639b2fd214899adfdb21bd62f0152b957fe..489cde24cba55f5387199e25170a74ce714a848e 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -10573,6 +10573,7 @@ class InterceptorInfo: public Struct { |
DECL_ACCESSORS(data, Object) |
DECL_BOOLEAN_ACCESSORS(can_intercept_symbols) |
DECL_BOOLEAN_ACCESSORS(all_can_read) |
+ DECL_BOOLEAN_ACCESSORS(non_masking) |
inline int flags() const; |
inline void set_flags(int flags); |
@@ -10594,6 +10595,7 @@ class InterceptorInfo: public Struct { |
static const int kCanInterceptSymbolsBit = 0; |
static const int kAllCanReadBit = 1; |
+ static const int kNonMasking = 2; |
private: |
DISALLOW_IMPLICIT_CONSTRUCTORS(InterceptorInfo); |