Home | History | Annotate | Download | only in cctest

Lines Matching refs:spy

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