Changeset 15163 in webkit for trunk/JavaScriptCore/kjs/interpreter.h
- Timestamp:
- Jul 5, 2006, 9:52:54 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.h
r14904 r15163 101 101 * 102 102 * @param code The code to check 103 * @return true if there were no syntax errors in the code, otherwise false 104 */ 105 bool checkSyntax(const UString &code); 103 * @return A normal completion if there were no syntax errors in the code, 104 * otherwise a throw completion with the syntax error as its value. 105 */ 106 Completion checkSyntax(const UString& sourceURL, int startingLineNumber, const UString& code); 107 Completion checkSyntax(const UString& sourceURL, int startingLineNumber, const UChar* code, int codeLength); 106 108 107 109 /**
Note:
See TracChangeset
for help on using the changeset viewer.