[v8-users] Re: How to run a v8 shell standalone and inspect / debug with Chrome DevTools

2022-08-31 Thread matias cohen
Hi, I integrated v8 in my Android app. I am now trying to debug it with Chrome DevTools. I can't understand what I need to develop to achieve it. I also found https://github.com/ahmadov/v8_inspector_example and I am trying to implement something similar. Can anyone help me? Thanks. El domingo, 1

Re: [v8-users] Re: How to run a v8 shell standalone and inspect / debug with Chrome DevTools

2022-08-31 Thread Dominic Cerisano
Inspect the V8 engine in a meaningful way requires very tight bindings. Not certain that a chromedev extension is sufficient. You might try J2V8: https://github.com/eclipsesource/J2V8 *Dominic Cerisano* ca.linkedin.com/in/dcerisano dcerisano@skype NOTICE: Confidential message which may be priv

Re: [v8-users] Re: Intermittent crashing creating a Persistent object.

2022-08-31 Thread loude...@gmail.com
A mutex around our persistent creation alone didn't solve this problem. Removing v8::Persistent and replacing them with v8::Global is not ideal, since we reuse these Persistent objects across multiple contexts to cache common function/object templates. On Friday, August 26, 2022 at 9:17:00 A