Home | History | Annotate | Download | only in cctest

Lines Matching refs:spy

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