Changeset 16117 in webkit for trunk/JavaScriptCore/kjs/context.h
- Timestamp:
- Aug 30, 2006, 11:45:07 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/context.h
r14834 r16117 30 30 namespace KJS { 31 31 32 class ExecState; 33 32 34 /** 33 35 * @short Execution context. … … 118 120 void mark(); 119 121 122 void setExecState(ExecState* exec) { m_execState = exec; } 123 ExecState* execState() { return m_execState; } 124 120 125 private: 121 126 // Contexts are always stack-allocated, and the garbage collector … … 125 130 Context* m_callingContext; 126 131 FunctionBodyNode* m_currentBody; 132 ExecState* m_execState; 127 133 128 134 FunctionImp* m_function;
Note:
See TracChangeset
for help on using the changeset viewer.