Lines Matching defs:o0
4326 v8::Handle<v8::Object> o0 = t0->GetFunction()->NewInstance();
4327 env->Global()->Set(v8::String::New("o0"), o0);
4337 "o0_mirror = debug.MakeMirror(o0);"
4356 // Set o1 as prototype for o0. o1 has the hidden prototype flag so all
4357 // properties on o1 should be seen on o0.
4358 o0->Set(v8::String::New("__proto__"), o1);
4366 // Set o2 as prototype for o0 (it will end up after o1 as o1 has the hidden
4368 // on o2 should be seen on o0 as well as properties on o1.
4369 o0->Set(v8::String::New("__proto__"), o2);
4379 // Set o3 as prototype for o0 (it will end up after o1 and o2 as both o1 and
4381 // flag so properties on o3 should not be seen on o0 whereas the properties
4382 // from o1 and o2 should still be seen on o0.
4383 // Final prototype chain: o0 -> o1 -> o2 -> o3
4385 o0->Set(v8::String::New("__proto__"), o3);
4398 // The prototype (__proto__) for o0 should be o3 as o1 and o2 are hidden.