On Tue, Jul 5, 2016 at 9:30 AM, Amaranth F <[email protected]> wrote: > I found that sometimes the current has a value but the entered is empty, so > what is the difference? > Thanks.
The entered context is the last context you, the embedder, explicitly entered with context->Enter or through an instance of Context::Scope. The current context changes implicitly when a function calls a function from another context (and changes back when that function returns.) -- -- 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/d/optout.
