Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 9333e9edc4003e2dd7a9f4bb7884eb6645ed2d6e..946981d0eca7b5e003182ff65e931e4e02cca2fa 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -87,6 +87,7 @@ |
// - JSFunctionResultCache |
// - ScopeInfo |
// - TransitionArray |
+// - GlobalContextTable |
// - FixedDoubleArray |
// - ExternalArray |
// - ExternalUint8ClampedArray |
@@ -944,6 +945,7 @@ template <class C> inline bool Is(Object* obj); |
V(FixedDoubleArray) \ |
V(ConstantPoolArray) \ |
V(Context) \ |
+ V(GlobalContextTable) \ |
V(NativeContext) \ |
V(ScopeInfo) \ |
V(JSFunction) \ |
@@ -7538,6 +7540,9 @@ class GlobalObject: public JSObject { |
DECLARE_CAST(GlobalObject) |
+ static void InvalidatePropertyCell(Handle<GlobalObject> object, |
+ Handle<Name> name); |
+ |
// Layout description. |
static const int kBuiltinsOffset = JSObject::kHeaderSize; |
static const int kNativeContextOffset = kBuiltinsOffset + kPointerSize; |