Dears, If it has a way to create a context with an already initialized global object?
Like: v8::Persistent<v8::Context> context1 = v8::Context::New(); v8::Persistent<v8::Object> global = v8::Persistent<v8::Object>::New(context1->Global()); How to create context2 using the global objected? The reason why to do this is I want to reduce the cost of create a new context. Best Regards, Kenny -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
