From 2e2ba8ff45915f40ed3e014101269c175f2a89a0 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 24 Aug 2012 08:29:43 +0200 Subject: Imported WebKit commit bf0b0213bbf3886c96610020602012ca7d11b084 (http://svn.webkit.org/repository/webkit/trunk@126545) New snapshot with clang and python build fixes --- Source/JavaScriptCore/runtime/JSGlobalObject.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Source/JavaScriptCore/runtime/JSGlobalObject.h') diff --git a/Source/JavaScriptCore/runtime/JSGlobalObject.h b/Source/JavaScriptCore/runtime/JSGlobalObject.h index af03f32e6..248004bd5 100644 --- a/Source/JavaScriptCore/runtime/JSGlobalObject.h +++ b/Source/JavaScriptCore/runtime/JSGlobalObject.h @@ -30,6 +30,7 @@ #include "NumberPrototype.h" #include "StringPrototype.h" #include "StructureChain.h" +#include "Watchpoint.h" #include #include #include @@ -142,6 +143,8 @@ namespace JSC { Debugger* m_debugger; + RefPtr m_masqueradesAsUndefinedWatchpoint; + OwnPtr m_rareData; WeakRandom m_weakRandom; @@ -270,6 +273,8 @@ namespace JSC { Structure* regExpStructure() const { return m_regExpStructure.get(); } Structure* stringObjectStructure() const { return m_stringObjectStructure.get(); } + WatchpointSet* masqueradesAsUndefinedWatchpoint() { return m_masqueradesAsUndefinedWatchpoint.get(); } + void setProfileGroup(unsigned value) { createRareDataIfNeeded(); m_rareData->profileGroup = value; } unsigned profileGroup() const { -- cgit v1.2.1