On Mon, Nov 11, 2013 at 12:51 PM, Dmitri S <[email protected]> wrote:
> On Monday, November 4, 2013 8:26:59 AM UTC+1, Sven Panne wrote: > >> Unless there is a bug, they will always be the same. But note that >> Isolate::GetCurrent() is on death row and will be removed as soon as we can. >> > > Who could update https://developers.google.com/v8/get_started - it lists > Isolate::GetCurrent() as the first function call in the embedding > example? Should I open an issue on > https://code.google.com/p/v8/issues/list? > This GetCurrent() call is caused by the fact that we currently still have the ill-conceived notion of "default Isolate". This has to go away before we can remove GetCurrent(), but there is still some work to do. Without that default Isolate, the embedder has to explicitly create *every* Isolate, and things are crystal clear then. Until then, I think it is best to leave the examples as they are, the only other option would be basically wasting the default Isolate by creating another one. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
