Changeset 32495 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- Apr 24, 2008, 10:20:01 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r31962 r32495 138 138 ActivationStackNode* activations; 139 139 size_t activationCount; 140 141 unsigned pageGroupIdentifier; 140 142 141 143 OwnPtr<HashSet<JSObject*> > arrayVisitedElements; // Global data shared by array prototype functions. … … 210 212 NativeErrorPrototype* URIErrorPrototype() const { return d()->URIErrorPrototype; } 211 213 214 void setPageGroupIdentifier(unsigned value) { d()->pageGroupIdentifier = value; } 215 unsigned pageGroupIdentifier() const { return d()->pageGroupIdentifier; } 216 212 217 void saveBuiltins(SavedBuiltins&) const; 213 218 void restoreBuiltins(const SavedBuiltins&);
Note:
See TracChangeset
for help on using the changeset viewer.