Changeset 29425 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- Jan 11, 2008, 6:08:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r28884 r29425 28 28 namespace KJS { 29 29 30 class ActivationImp; 31 class ActivationStackNode; 30 32 class ArrayObjectImp; 31 33 class ArrayPrototype; … … 129 131 130 132 SymbolTable inlineSymbolTable; 133 134 ActivationStackNode* activations; 135 size_t activationCount; 131 136 }; 132 137 … … 228 233 virtual bool allowsAccessFrom(const JSGlobalObject*) const { return true; } 229 234 235 ActivationImp* pushActivation(ExecState*); 236 void popActivation(); 237 void tearOffActivation(ExecState*, bool markAsRelic = false); 238 230 239 private: 231 240 void init(); … … 236 245 void resetTimeoutCheck(); 237 246 247 void checkActivationCount(); 248 238 249 static JSGlobalObject* s_head; 239 250 };
Note:
See TracChangeset
for help on using the changeset viewer.