Ignore:
Timestamp:
Jun 26, 2009, 3:27:21 AM (16 years ago)
Author:
[email protected]
Message:

2009-06-26 Zoltan Horvath <[email protected]>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=26750

Allow custom memory allocation control for JavaScriptCore/runtime
directory's classes which instantiated by new:

class IdentifierTable
struct RegExpObjectData
class HashEntry
struct DataInstance::Cache
class UString
struct RegExpConstructorPrivate
class ScopeChain

  • runtime/DateInstance.cpp:
  • runtime/Identifier.cpp:
  • runtime/Lookup.h:
  • runtime/RegExpConstructor.cpp:
  • runtime/RegExpObject.h:
  • runtime/ScopeChain.h:
  • runtime/UString.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/RegExpObject.h

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