X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/b37bf2e156556c589aea3e1f58a377f2b1189665..b5422865f473faf3977f31b96a635c4c8c4ede09:/kjs/debugger.cpp diff --git a/kjs/debugger.cpp b/kjs/debugger.cpp index af9c5fa..9e69b2c 100644 --- a/kjs/debugger.cpp +++ b/kjs/debugger.cpp @@ -97,36 +97,35 @@ bool Debugger::hasHandledException(ExecState *exec, JSValue *exception) return false; } -bool Debugger::sourceParsed(ExecState*, int /*sourceId*/, const UString &/*sourceURL*/, - const UString &/*source*/, int /*startingLineNumber*/, int /*errorLine*/, const UString & /*errorMsg*/) +bool Debugger::sourceParsed(ExecState*, const SourceCode&, int /*errorLine*/, const UString& /*errorMsg*/) { return true; } -bool Debugger::sourceUnused(ExecState*, int /*sourceId*/) +bool Debugger::sourceUnused(ExecState*, intptr_t /*sourceID*/) { return true; } -bool Debugger::exception(ExecState*, int /*sourceId*/, int /*lineno*/, +bool Debugger::exception(ExecState*, intptr_t /*sourceID*/, int /*lineno*/, JSValue* /*exception */) { return true; } -bool Debugger::atStatement(ExecState*, int /*sourceId*/, int /*firstLine*/, +bool Debugger::atStatement(ExecState*, intptr_t /*sourceID*/, int /*firstLine*/, int /*lastLine*/) { return true; } -bool Debugger::callEvent(ExecState*, int /*sourceId*/, int /*lineno*/, +bool Debugger::callEvent(ExecState*, intptr_t /*sourceID*/, int /*lineno*/, JSObject* /*function*/, const List &/*args*/) { return true; } -bool Debugger::returnEvent(ExecState*, int /*sourceId*/, int /*lineno*/, +bool Debugger::returnEvent(ExecState*, intptr_t /*sourceID*/, int /*lineno*/, JSObject* /*function*/) { return true;