Changeset 27339 in webkit for trunk/JavaScriptCore/kjs/ExecState.h
- Timestamp:
- Oct 31, 2007, 10:02:30 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.h
r27101 r27339 45 45 class GlobalFuncImp; 46 46 class FunctionBodyNode; 47 class LocalStorageEntry; 47 48 48 49 /** … … 103 104 // important property lookup functions, to avoid taking PIC branches in Mach-O binaries 104 105 const CommonIdentifiers& propertyNames() const { return *m_propertyNames; } 105 106 107 LocalStorageEntry* localStorage() { return m_localStorageBuffer; } 108 void updateLocalStorage(); 109 106 110 private: 107 111 ExecState(Interpreter* interp, JSGlobalObject* glob, JSObject* thisV, … … 124 128 const List* m_arguments; 125 129 JSObject* m_activation; 126 130 LocalStorageEntry* m_localStorageBuffer; 131 127 132 ScopeChain scope; 128 133 JSObject* m_variable;
Note:
See TracChangeset
for help on using the changeset viewer.