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:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.