[v8-users] Aquiring the Source: gclient failing

2017-03-23 Thread Zyr Ius
Hello there, I'm trying to follow the guide found here: https://github.com/v8/v8/wiki/Building-from-Source I have installed Git for Windows and depot_tools and added Git for Windows, depot_tools and python to my PATH, depot_tools at the front. However, the issue starts already when doing a *f

Re: [v8-users] debugging protocol

2017-03-23 Thread DánielN
Eventually I managed to sort it out. It does not seem to have huge interest about it but I share it anyway, someone might find it useful. Basically we have to create a web socket server along with our VM that we want to debug. Anything that comes through the ws connection (commands from CDT) has

Re: [v8-users] v8::Local equality check "=="

2017-03-23 Thread Ben Noordhuis
On Wed, Mar 22, 2017 at 7:34 PM, Hanyun Tao wrote: > I'm confused about your example, why would the first comparison 'f1==f2' > return false if they refer to the same function? Because they refer to different function objects. Setting `f1.x = 42` won't magically make .x appear on f2. -- -- v8