Re: [webkit-dev] JavaScriptCore and the V8 debugger protocol

2010-03-09 Thread jamey.hicks
Hi Jonathan, I've been working on remote debugging/profiling of webkit and I've been leveraging work that the webkit and chromium guys did to separate the Web Inspector frontend from backend. I was actually thinking about sending email to the list this morning about agreeing on a

Re: [webkit-dev] JavaScriptCore and the V8 debugger protocol

2010-03-10 Thread jamey.hicks
Hi Jonathan, If you're only using JavaScriptCore, then it's probably better only to use support from the JavaScriptCore directory. In terms of defining a debug protocol, you're right -- it would be helpful if the debug portion of the protocol was focused on the javascript engines. WebCore is

Re: [webkit-dev] WebKit blog post proposal: Remote debugging with Web Inspector.

2010-08-12 Thread jamey.hicks
On Aug 9, 2010, at 3:48 PM, ext Pavel Feldman wrote: Hi guys, As some of you know, we are working on a remote debugging feature in Web Inspector. There are many good reasons behind the project including the following: - Debugging WebKit on embedded devices - Shaping up a good protocol for

Re: [webkit-dev] InspectorDebuggerAgent::didPause function

2010-10-19 Thread jamey.hicks
Hi Tomasz, I have a patch for JavaScriptCore to let you determine if an exception happened and what it was, if you're using JSC instead of V8. We found that users of the front-end wanted to know if the pause was due to an exception, and if so, what it was. Jamey On Oct 19, 2010, at 9:12 AM,

Re: [webkit-dev] InspectorDebuggerAgent::didPause function

2010-10-19 Thread jamey.hicks
Hi Tomasz, I don't have time to update the Web Inspector UI to use this feature, but I'll find the patch and upload it to bugs.webkit.org and CC you. We used it with our frontend that adds Eclipse Chrome Dev Tools support with QtWebKit which currently uses JSC rather than V8. Jamey On Oct