Changeset 48005 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 3, 2009, 12:14:55 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r48000 r48005 1 2009-09-03 Zoltan Horvath <[email protected]> 2 3 Reviewed by Darin Adler. 4 5 Allow custom memory allocation control for JavaScriptCore's HashEntry class 6 https://bugs.webkit.org/show_bug.cgi?id=27830 7 8 Inherits HashEntry class from FastAllocBase because it has been 9 instantiated by 'new' JavaScriptCore/runtime/Lookup.cpp:32. 10 11 * runtime/Lookup.h: 12 1 13 2009-09-02 Gavin Barraclough <[email protected]> 2 14 -
trunk/JavaScriptCore/runtime/Lookup.h
r47780 r48005 52 52 typedef void (*PutFunction)(ExecState*, JSObject* baseObject, JSValue value); 53 53 54 class HashEntry {54 class HashEntry : public FastAllocBase { 55 55 public: 56 56 void initialize(UString::Rep* key, unsigned char attributes, intptr_t v1, intptr_t v2)
Note:
See TracChangeset
for help on using the changeset viewer.