Re: [v8-users] How to use Chrome Dev Tools to debug a script in d8

2019-04-08 Thread DaManuell
Not really. Too succinct. Not clear what is documented here. Le lundi 8 avril 2019 13:28:34 UTC+2, Mathias Bynens a écrit : > > Does the documentation help? https://v8.dev/docs/inspector > > On Mon, Apr 8, 2019 at 1:23 PM DaManuell > wrote: > >> I successfully built d8.exe from sources >> >> I

Re: [v8-users] How to use Chrome Dev Tools to debug a script in d8

2019-04-08 Thread 'Mathias Bynens' via v8-users
Does the documentation help? https://v8.dev/docs/inspector On Mon, Apr 8, 2019 at 1:23 PM DaManuell wrote: > I successfully built d8.exe from sources > > I made a simple JavaScrit file called test.js: > > function test( obj ) { > return obj.prop + obj.prop; > } > > I ran d8.exe with the

[v8-users] How to use Chrome Dev Tools to debug a script in d8

2019-04-08 Thread DaManuell
I successfully built d8.exe from sources I made a simple JavaScrit file called test.js: function test( obj ) { return obj.prop + obj.prop; } I ran d8.exe with the command line bellow: d8 --enable-inspector --shell test.js I am able to call my test function from the d8 shell interface: V8