Ignore:
Timestamp:
Dec 6, 2012, 11:34:27 AM (12 years ago)
Author:
[email protected]
Message:

Build fix, last patch rolled out logic that is now needed on ToT.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/parser/Nodes.h

    r136860 r136863  
    14251425        FunctionNameIsInScopeToggle functionNameIsInScopeToggle() { return m_functionNameIsInScopeToggle; }
    14261426
     1427        void setFunctionStart(int functionStart) { m_functionStart = functionStart; }
     1428        int functionStart() const { return m_functionStart; }
     1429
    14271430        static const bool scopeIsFunction = true;
    14281431
     
    14351438        FunctionNameIsInScopeToggle m_functionNameIsInScopeToggle;
    14361439        RefPtr<FunctionParameters> m_parameters;
     1440        int m_functionStart;
    14371441    };
    14381442
Note: See TracChangeset for help on using the changeset viewer.