Changeset 173269 in webkit for trunk/Source/JavaScriptCore/runtime/Completion.h
- Timestamp:
- Sep 4, 2014, 12:10:36 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Completion.h
r149130 r173269 28 28 namespace JSC { 29 29 30 31 32 33 34 30 struct ParserError; 31 class ExecState; 32 class JSScope; 33 class SourceCode; 34 class VM; 35 35 36 37 38 36 JS_EXPORT_PRIVATE bool checkSyntax(VM&, const SourceCode&, ParserError&); 37 JS_EXPORT_PRIVATE bool checkSyntax(ExecState*, const SourceCode&, JSValue* exception = 0); 38 JS_EXPORT_PRIVATE JSValue evaluate(ExecState*, const SourceCode&, JSValue thisValue = JSValue(), JSValue* exception = 0); 39 39 40 40 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.