Changeset 49249 in webkit for trunk/JavaScriptCore/parser


Ignore:
Timestamp:
Oct 7, 2009, 10:00:44 AM (16 years ago)
Author:
[email protected]
Message:

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

Reviewed by Darin Adler.

Allow custom memory allocation control for JavaScriptCore's IdentifierArena
https://bugs.webkit.org/show_bug.cgi?id=30158

Inherits IdentifierArena class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/parser/ParserArena.cpp:36.

  • parser/ParserArena.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/parser/ParserArena.h

    r47664 r49249  
    3535    class ParserArenaRefCounted;
    3636
    37     class IdentifierArena {
     37    class IdentifierArena : public FastAllocBase {
    3838    public:
    3939        ALWAYS_INLINE const Identifier& makeIdentifier(JSGlobalData*, const UChar* characters, size_t length);
Note: See TracChangeset for help on using the changeset viewer.