Changeset 15026 in webkit for trunk/JavaScriptCore/kjs/debugger.h
- Timestamp:
- Jun 25, 2006, 10:53:03 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/debugger.h
r13017 r15026 104 104 * @param sourceURL Where the source code that was parsed came from 105 105 * @param source The source code that was parsed 106 * @param startingLineNumber The line number at which parsing started 106 107 * @param errorLine The line number at which parsing encountered an 107 108 * error, or -1 if the source code was valid and parsed successfully 109 * @param errorMsg The error description, or null if the source code 110 was valid and parsed successfully 108 111 * @return true if execution should be continue, false if it should 109 112 * be aborted 110 113 */ 111 114 virtual bool sourceParsed(ExecState *exec, int sourceId, const UString &sourceURL, 112 const UString &source, int errorLine);115 const UString &source, int startingLineNumber, int errorLine, const UString &errorMsg); 113 116 114 117 /**
Note:
See TracChangeset
for help on using the changeset viewer.