Changeset 34711 in webkit for trunk/JavaScriptCore/kjs/nodes.h


Ignore:
Timestamp:
Jun 20, 2008, 11:32:25 PM (17 years ago)
Author:
[email protected]
Message:

2008-06-20 Cameron Zwarich <[email protected]>

Reviewed by Oliver.

Remove unused destructors.

  • kjs/nodes.cpp:
  • kjs/nodes.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/nodes.h

    r34659 r34711  
    21532153    public:
    21542154        static ProgramNode* create(SourceElements*, VarStack*, FunctionStack*, bool usesEval, bool needsClosure) KJS_FAST_CALL;
    2155         virtual ~ProgramNode();
    2156        
     2155
    21572156        ProgramCodeBlock& code(ScopeChainNode* scopeChain, bool canCreateGlobals) KJS_FAST_CALL
    21582157        {
     
    21772176    public:
    21782177        static EvalNode* create(SourceElements*, VarStack*, FunctionStack*, bool usesEval, bool needsClosure) KJS_FAST_CALL;
    2179         virtual ~EvalNode();
    2180        
     2178
    21812179        EvalCodeBlock& code(ScopeChainNode* scopeChain) KJS_FAST_CALL
    21822180        {
     
    21982196    public:
    21992197        static FunctionBodyNode* create(SourceElements*, VarStack*, FunctionStack*, bool usesEval, bool needsClosure) KJS_FAST_CALL;
    2200         virtual ~FunctionBodyNode();
    2201        
     2198
    22022199        Vector<Identifier>& parameters() KJS_FAST_CALL { return m_parameters; }
    22032200        UString paramString() const KJS_FAST_CALL;
Note: See TracChangeset for help on using the changeset viewer.