Changeset 36271 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Sep 8, 2008, 1:42:46 PM (17 years ago)
Author:
[email protected]
Message:
  • build fix
  • kjs/nodes.h: (JSC::StatementNode::): (JSC::BlockNode::):
File:
1 edited

Legend:

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

    r36270 r36271  
    234234        virtual bool isEmptyStatement() const JSC_FAST_CALL { return false; }
    235235
    236         virtual bool isBlock() const KJS_FAST_CALL { return false; }
     236        virtual bool isBlock() const JSC_FAST_CALL { return false; }
    237237    protected:
    238238        LabelStack m_labelStack;
     
    18281828        StatementVector& children() { return m_children; }
    18291829
    1830         virtual bool isBlock() const KJS_FAST_CALL { return true; }
     1830        virtual bool isBlock() const JSC_FAST_CALL { return true; }
    18311831    protected:
    18321832        StatementVector m_children;
Note: See TracChangeset for help on using the changeset viewer.