Re: [v8-users] Double Proxy resolve/reject causes segfault

2018-02-24 Thread Bogdan Padalko
Thanks! The issue is fixed. On Friday, February 23, 2018 at 1:09:11 AM UTC+2, Sathya Gunasekaran wrote: > > Thanks for the report. Fix out for review: > https://chromium-review.googlesource.com/c/v8/v8/+/932968 > > On Thu, Feb 22, 2018 at 12:17 PM, Bogdan Padalko >

[v8-users] v8 garbage collection and threading

2018-02-24 Thread A.M.
My understanding is that garbage collection can be done either in the idle notification call made by the application or when some context is being disposed of or in one of the v8 background threads. I'm not concerned about phantom handles and the foreground message pump. Can somebody confirm

[v8-users] Inner v8::TryCatch reports outer script resource when including one script in another

2018-02-24 Thread A.M.
I have a script including another script and if the included script has errors, the inner `v8::TryCatch` object reports the outer script in the returned `v8::Message` instance. I set up the usual v8 callbacks and the outer script looks like this: var app = new MyApp(); try {