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] Is there any up-to-date documentation on how to use v8::Debug

2015-11-12 Thread 'Ali Sheikh' via v8-users
Hi Jane: There are quite a few examples in the tests. See the debug-*.js tests in https://code.google.com/p/chromium/codesearch#chromium/src/v8/test/mjsunit/. On Thu, Nov 12, 2015 at 11:14 AM, Jane Chen wrote: > Hi Ben, > > Thanks for the info! > > Is the function-based debug API still supporte

Re: [v8-users] Is there any up-to-date documentation on how to use v8::Debug

2015-11-12 Thread Jane Chen
Hi Ben, Thanks for the info! Is the function-based debug API still supported? Is there any reference or code examples for using that? Jane On Thursday, November 12, 2015 at 4:13:31 AM UTC-8, Ben Noordhuis wrote: > > On Thu, Nov 12, 2015 at 2:22 AM, Jane Chen > wrote: > > I'd like to be ab

Re: [v8-users] Is there any up-to-date documentation on how to use v8::Debug

2015-11-12 Thread Ben Noordhuis
On Thu, Nov 12, 2015 at 2:22 AM, Jane Chen wrote: > I'd like to be able to do what node.js does in my own embedding application > (http://developer.marklogic.com/features/javascript): > > ./node --debug -e "console.log('Hello from node.js ' + process.versions.v8)" > Debugger listening on port 5858