Actually, I don't understand what you mean; but suppose if I have this scenario 1- create 1st context 2- enter it and declare some objects here and do some operations on them 3- then exit this context 4- create 2nd context 5- enter 2nd context 6- here I want to make some operations on object from 1st context
in the 6th step how can I do this? if I set the security tokens of the first context to any value what this mean? thank you in advance > > > That's correct. More precisely: objects created in context A are > accessible by context B when their security tokens match. > > New contexts use a default security token. You would have to change > it manually with v8::Context::SetSecurityToken() for tokens to _not_ > match. > -- -- 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.
