Home | History | Annotate | Download | only in cctest

Lines Matching full:spy

4135   Script::Compile(v8_str("spy=function(){return spy;}"))->Run();
4136 Local<Value> spy = env1->Global()->Get(v8_str("spy"));
4137 CHECK(spy->IsFunction());
4144 // Switch to env2 in the same domain and invoke spy on env2.
4149 Local<Value> result = Function::Cast(*spy)->Call(env2->Global(), 0, NULL);