Changeset 37175 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- Oct 1, 2008, 6:30:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r37088 r37175 139 139 140 140 HashSet<ProgramCodeBlock*> codeBlocks; 141 142 OwnPtr<HashSet<JSObject*> > arrayVisitedElements; // Global data shared by array prototype functions.143 141 }; 144 142 … … 243 241 virtual bool isDynamicScope() const; 244 242 245 HashSet<JSObject*>& arrayVisitedElements() { if (!d()->arrayVisitedElements) d()->arrayVisitedElements.set(new HashSet<JSObject*>); return *d()->arrayVisitedElements; }246 247 243 HashSet<ProgramCodeBlock*>& codeBlocks() { return d()->codeBlocks; } 248 244
Note:
See TracChangeset
for help on using the changeset viewer.