Changeset 46907 in webkit for trunk/JavaScriptCore
- Timestamp:
- Aug 7, 2009, 12:51:38 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r46881 r46907 1 2009-08-07 Zoltan Horvath <[email protected]> 2 3 Reviewed by Eric Seidel. 4 5 Allow custom memory allocation control for RegExpObjectData struct 6 http://bugs.webkit.org/show_bug.cgi?id=26750 7 8 Inherits RegExpObjectData struct from FastAllocBase because 9 it has been instantiated by 'new' in JavaScriptCore/runtime/RegExpObject.cpp:62 10 11 * runtime/RegExpObject.h: 12 1 13 2009-08-06 Norbert Leser <[email protected]> 2 14 -
trunk/JavaScriptCore/runtime/RegExpObject.h
r45269 r46907 57 57 virtual CallType getCallData(CallData&); 58 58 59 struct RegExpObjectData {59 struct RegExpObjectData : FastAllocBase { 60 60 RegExpObjectData(PassRefPtr<RegExp> regExp, double lastIndex) 61 61 : regExp(regExp)
Note:
See TracChangeset
for help on using the changeset viewer.