Changeset 38509 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Nov 17, 2008, 9:55:40 AM (17 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 1 deleted
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Completion.cpp
r38507 r38509 22 22 23 23 #include "config.h" 24 #include " Interpreter.h"24 #include "Completion.h" 25 25 26 #include "Completion.h"27 26 #include "ExecState.h" 28 27 #include "JSGlobalObject.h" -
trunk/JavaScriptCore/runtime/Completion.h
r38137 r38509 21 21 */ 22 22 23 #ifndef KJS_COMPLETION_H24 #define KJS_COMPLETION_H23 #ifndef Completion_h 24 #define Completion_h 25 25 26 26 #include "JSValue.h" 27 27 28 28 namespace JSC { 29 30 class ExecState; 31 class ScopeChain; 32 class SourceCode; 29 33 30 34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted }; … … 52 56 }; 53 57 58 Completion checkSyntax(ExecState*, const SourceCode&); 59 Completion evaluate(ExecState*, ScopeChain&, const SourceCode&, JSValue* thisValue = noValue()); 60 54 61 } // namespace JSC 55 62 56 #endif // KJS_COMPLETION_H63 #endif // Completion_h
Note:
See TracChangeset
for help on using the changeset viewer.