Changeset 45122 in webkit


Ignore:
Timestamp:
Jun 24, 2009 4:55:11 PM (15 years ago)
Author:
eric@webkit.org
Message:

2009-06-24 Zoltan Horvath <hzoltan@inf.u-szeged.hu>

Reviewed by Maciej Stachowiak.

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

Inherits BytecodeGenerator class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/parser/Nodes.cpp:1892.

  • bytecompiler/BytecodeGenerator.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45121 r45122  
     12009-06-24  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
     2
     3        Reviewed by Maciej Stachowiak.
     4       
     5        https://bugs.webkit.org/show_bug.cgi?id=26676
     6
     7        Inherits BytecodeGenerator class from FastAllocBase because it has been
     8        instantiated by 'new' in JavaScriptCore/parser/Nodes.cpp:1892.
     9
     10        * bytecompiler/BytecodeGenerator.h:
     11
    1122009-06-24  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
    213
  • trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h

    r44897 r45122  
    6161    };
    6262
    63     class BytecodeGenerator {
     63    class BytecodeGenerator : public FastAllocBase {
    6464    public:
    6565        typedef DeclarationStacks::VarStack VarStack;
Note: See TracChangeset for help on using the changeset viewer.