Changeset 32807 in webkit for trunk/JavaScriptCore/kjs/ExecState.h
- Timestamp:
- May 2, 2008, 3:07:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.h
r32654 r32807 59 59 CommonIdentifiers* propertyNames; 60 60 List emptyList; 61 62 Heap* heap; 61 63 }; 62 64 … … 121 123 static const HashTable* stringTable(ExecState* exec) { return exec->m_perThreadData->stringTable; } 122 124 125 Heap* heap() const { return m_perThreadData->heap; } 126 123 127 LocalStorage& localStorage() { return *m_localStorage; } 124 128 void setLocalStorage(LocalStorage* s) { m_localStorage = s; }
Note:
See TracChangeset
for help on using the changeset viewer.