Changeset 2863 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 25, 2002, 2:02:03 PM (23 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r2861 r2863 1 2002-11-25 Richard Williamson <[email protected]> 2 3 Changes for back/forward. Currently disabled. 4 5 * kjs/property_map.cpp: 6 * kjs/property_map.h: 7 1 8 2002-11-25 Darin Adler <[email protected]> 2 9 -
trunk/JavaScriptCore/ChangeLog-2002-12-03
r2861 r2863 1 2002-11-25 Richard Williamson <[email protected]> 2 3 Changes for back/forward. Currently disabled. 4 5 * kjs/property_map.cpp: 6 * kjs/property_map.h: 7 1 8 2002-11-25 Darin Adler <[email protected]> 2 9 -
trunk/JavaScriptCore/ChangeLog-2003-10-25
r2861 r2863 1 2002-11-25 Richard Williamson <[email protected]> 2 3 Changes for back/forward. Currently disabled. 4 5 * kjs/property_map.cpp: 6 * kjs/property_map.h: 7 1 8 2002-11-25 Darin Adler <[email protected]> 2 9 -
trunk/JavaScriptCore/kjs/property_map.cpp
r2861 r2863 69 69 }; 70 70 71 SavedProperties::SavedProperties() : _count(0), _properties(0) { } 72 73 SavedProperties::~SavedProperties() 74 { 75 if (_properties) 76 delete _properties; 77 } 78 71 79 // Algorithm concepts from Algorithms in C++, Sedgewick. 72 80 -
trunk/JavaScriptCore/kjs/property_map.h
r2846 r2863 39 39 friend class PropertyMap; 40 40 public: 41 SavedProperties() : _count(0), _properties(0) { }41 SavedProperties(); 42 42 ~SavedProperties(); 43 43
Note:
See TracChangeset
for help on using the changeset viewer.