Changeset 46907 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Aug 7, 2009, 12:51:38 PM (16 years ago)
Author:
[email protected]
Message:

2009-08-07 Zoltan Horvath <[email protected]>

Reviewed by Eric Seidel.

Allow custom memory allocation control for RegExpObjectData struct
http://bugs.webkit.org/show_bug.cgi?id=26750

Inherits RegExpObjectData struct from FastAllocBase because
it has been instantiated by 'new' in JavaScriptCore/runtime/RegExpObject.cpp:62

  • runtime/RegExpObject.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r46881 r46907  
     12009-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
    1132009-08-06  Norbert Leser  <[email protected]>
    214
  • trunk/JavaScriptCore/runtime/RegExpObject.h

    r45269 r46907  
    5757        virtual CallType getCallData(CallData&);
    5858
    59         struct RegExpObjectData {
     59        struct RegExpObjectData : FastAllocBase {
    6060            RegExpObjectData(PassRefPtr<RegExp> regExp, double lastIndex)
    6161                : regExp(regExp)
Note: See TracChangeset for help on using the changeset viewer.