Ignore:
Timestamp:
Oct 26, 2007, 3:36:45 AM (18 years ago)
Author:
mjs
Message:

Windows build fix.

File:
1 edited

Legend:

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

    r27022 r27100  
    3636  class BooleanObjectImp;
    3737  class BooleanPrototype;
    38   class Context;
    3938  class DateObjectImp;
    4039  class DatePrototype;
     
    319318    void setDebugger(Debugger* d) { m_debugger = d; }
    320319   
    321     void setContext(Context* c) { m_context = c; }
    322     Context* context() const { return m_context; }
     320    void setCurrentExec(ExecState* exec) { m_currentExec = exec; }
     321    ExecState* currentExec() const { return m_currentExec; }
    323322       
    324323    void setTimeoutTime(unsigned timeoutTime) { m_timeoutTime = timeoutTime; }
     
    351350    int m_refCount;
    352351   
     352    ExecState* m_currentExec;
     353    JSGlobalObject* m_globalObject;
    353354    ExecState m_globalExec;
    354355
     
    360361   
    361362    Debugger* m_debugger;
    362     Context* m_context;
    363363    CompatMode m_compatMode;
    364364
     
    370370    unsigned m_ticksUntilNextTimeoutCheck;
    371371
    372     JSGlobalObject* m_globalObject;
    373372
    374373    ObjectObjectImp* m_Object;
Note: See TracChangeset for help on using the changeset viewer.