Changeset 38528 in webkit for trunk/JavaScriptCore/interpreter
- Timestamp:
- Nov 17, 2008, 2:11:26 PM (17 years ago)
- Location:
- trunk/JavaScriptCore/interpreter
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/CallFrame.cpp
r38514 r38528 25 25 26 26 #include "config.h" 27 #include " ExecState.h"27 #include "CallFrame.h" 28 28 29 29 #include "CodeBlock.h" -
trunk/JavaScriptCore/interpreter/CallFrame.h
r38524 r38528 21 21 */ 22 22 23 #ifndef ExecState_h 24 #define ExecState_h 25 26 // FIXME: Rename this file to CallFrame.h. 23 #ifndef CallFrame_h 24 #define CallFrame_h 27 25 28 26 #include "JSGlobalData.h" … … 147 145 } // namespace JSC 148 146 149 #endif // ExecState_h147 #endif // CallFrame_h -
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r38512 r38528 37 37 #include "EvalCodeCache.h" 38 38 #include "ExceptionHelpers.h" 39 #include " ExecState.h"39 #include "CallFrame.h" 40 40 #include "GlobalEvalFunction.h" 41 41 #include "JSActivation.h"
Note:
See TracChangeset
for help on using the changeset viewer.