Hi, I received this error "Fatal Error in v8::Context::exit cannot exit non entered context" while I was executing a multi context application, my application structure is : Handle<Isolate> isolate= Isolate::New(); Isolate::Scope isolate_scope(isolate); HandleScope handle_scope(isolate); Handle<Context> context1 = Context::New(); Context::Scope context_scope1(context1); Handle<Context> context2 = Context::New(); Context::Scope context_scope2(context2); //here compile and execute simple script context2->Exit(); context1->Enter(); //here compile and execute simple script
it compiled and executed the script but after executing the script it gives me this error "Fatal Error in v8::Context::exit cannot exit non entered context" and "core dumped" I tried to play with context2->Exit(); context1->Enter(); I tried to comment them but the same error still exists. Can anyone indicate why and how to solve this problem? thank you, -- -- 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.
