Changeset 32819 in webkit for trunk/JavaScriptCore/kjs/ExecState.h
- Timestamp:
- May 2, 2008, 11:10:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.h
r32807 r32819 61 61 62 62 Heap* heap; 63 64 unsigned functionCallDepth; 63 65 }; 64 66 … … 125 127 Heap* heap() const { return m_perThreadData->heap; } 126 128 129 unsigned& functionCallDepth() { return m_perThreadData->functionCallDepth; } 130 127 131 LocalStorage& localStorage() { return *m_localStorage; } 128 132 void setLocalStorage(LocalStorage* s) { m_localStorage = s; } … … 205 209 ExecState* m_callingExec; 206 210 207 constPerThreadData* m_perThreadData;211 PerThreadData* m_perThreadData; 208 212 209 213 ScopeNode* m_scopeNode;
Note:
See TracChangeset
for help on using the changeset viewer.