Changeset 33038 in webkit for trunk/JavaScriptCore/kjs/ExecState.h
- Timestamp:
- May 12, 2008, 12:12:31 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.h
r32819 r33038 59 59 CommonIdentifiers* propertyNames; 60 60 List emptyList; 61 62 Heap* heap;63 64 unsigned functionCallDepth;65 61 }; 66 62 … … 125 121 static const HashTable* stringTable(ExecState* exec) { return exec->m_perThreadData->stringTable; } 126 122 127 Heap* heap() const { return m_perThreadData->heap; }128 129 unsigned& functionCallDepth() { return m_perThreadData->functionCallDepth; }130 131 123 LocalStorage& localStorage() { return *m_localStorage; } 132 124 void setLocalStorage(LocalStorage* s) { m_localStorage = s; } … … 209 201 ExecState* m_callingExec; 210 202 211 PerThreadData* m_perThreadData;203 const PerThreadData* m_perThreadData; 212 204 213 205 ScopeNode* m_scopeNode;
Note:
See TracChangeset
for help on using the changeset viewer.