Re: [v8-users] Help about javaScript debug on v8

2015-11-12 Thread Ben Noordhuis
On Thu, Nov 12, 2015 at 8:40 PM, Jane Chen wrote: > In v8 4.6.88, I can no longer find src/debug-debugger.js, nor > src/{liveedit,mirror}-debugger.js. Does it mean that the function-based API > is also deprecated and removed? Those files live in src/debug now (and without the -debugger suffix) b

Re: [v8-users] Help about javaScript debug on v8

2015-11-12 Thread Jane Chen
Ben, In v8 4.6.88, I can no longer find src/debug-debugger.js, nor src/{liveedit,mirror}-debugger.js. Does it mean that the function-based API is also deprecated and removed? Jane On Saturday, March 14, 2015 at 3:53:55 AM UTC-7, Ben Noordhuis wrote: > > On Sat, Mar 14, 2015 at 8:30 AM, Deguo

Re: [v8-users] Help about javaScript debug on v8

2015-03-14 Thread Deguo Meng
HI , Thanks for your reply. I will read the code . Best Regards 2015-03-14 18:53 GMT+08:00 Ben Noordhuis : > On Sat, Mar 14, 2015 at 8:30 AM, Deguo Meng wrote: > > HI all , > > Page https://code.google.com/p/v8-wiki/wiki/DebuggerProtocol > shows > > the JSON based debug protocol.

Re: [v8-users] Help about javaScript debug on v8

2015-03-14 Thread Ben Noordhuis
On Sat, Mar 14, 2015 at 8:30 AM, Deguo Meng wrote: > HI all , > Page https://code.google.com/p/v8-wiki/wiki/DebuggerProtocol shows > the JSON based debug protocol. But it also reads that there's another > function based API using JavaScript objects, Is there any materials > introduce the