Changeset 45076 in webkit


Ignore:
Timestamp:
Jun 24, 2009 1:15:16 AM (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=26645

Inherits ScopeChainNode class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/runtime/ScopeChain.h:95.

  • wtf/RefPtr.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45073 r45076  
     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=26645
     6
     7        Inherits ScopeChainNode class from FastAllocBase because it has been
     8        instantiated by 'new' in JavaScriptCore/runtime/ScopeChain.h:95.
     9
     10        * wtf/RefPtr.h:
     11
    1122009-06-24  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
    213
  • trunk/JavaScriptCore/runtime/ScopeChain.h

    r44224 r45076  
    2222#define ScopeChain_h
    2323
    24 #include <wtf/Assertions.h>
     24#include "FastAllocBase.h"
    2525
    2626namespace JSC {
     
    3131    class ScopeChainIterator;
    3232   
    33     class ScopeChainNode {
     33    class ScopeChainNode : public WTF::FastAllocBase {
    3434    public:
    3535        ScopeChainNode(ScopeChainNode* next, JSObject* object, JSGlobalData* globalData, JSObject* globalThis)
Note: See TracChangeset for help on using the changeset viewer.