Changeset 31807 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- Apr 11, 2008, 12:37:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r31746 r31807 138 138 ActivationStackNode* activations; 139 139 size_t activationCount; 140 141 OwnPtr<HashSet<JSObject*> > arrayVisitedElements; // Global data shared by array prototype functions. 140 142 }; 141 143 … … 242 244 ExecStateStack& activeExecStates() const { return d()->activeExecStates; } 243 245 246 HashSet<JSObject*>& arrayVisitedElements() { if (!d()->arrayVisitedElements) d()->arrayVisitedElements.set(new HashSet<JSObject*>); return *d()->arrayVisitedElements; } 247 244 248 private: 245 249 void init();
Note:
See TracChangeset
for help on using the changeset viewer.