Lines Matching full:obj1
3533 context->Global()->Set(v8_str("obj1"), templ->NewInstance());
3536 CHECK(CompileRun("obj1.x")->IsUndefined());
3539 CHECK(GetGlobalProperty(&context, "obj1")->
3542 ExpectString("obj1.x", "x");
3548 ExpectString("obj1.x", "x");
3551 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
3554 CompileRun("Object.defineProperty(obj1, 'x',"
3557 ExpectString("obj1.x", "y");
3563 ExpectString("obj1.x", "y");
3566 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
3569 CHECK(GetGlobalProperty(&context, "obj1")->
3574 ExpectString("obj1.x", "x");
3577 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
3581 CompileRun("Object.defineProperty(obj1, 'x',"
3586 ExpectTrue("!Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
3589 ExpectString("obj1.x", "z");
3592 CHECK(!GetGlobalProperty(&context, "obj1")->
3597 ExpectString("obj1.x", "z");
3607 context->Global()->Set(v8_str("obj1"), templ->NewInstance());
3610 CHECK(GetGlobalProperty(&context, "obj1")->SetAccessor(
3619 ExpectString("obj1.x", "x");
3622 ExpectTrue("!Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
3625 CHECK(!GetGlobalProperty(&context, "obj1")->
3632 CompileRun("Object.defineProperty(obj1, 'x',"
3663 context->Global()->Set(v8_str("obj1"), templ->NewInstance());
3666 CHECK(GetGlobalProperty(&context, "obj1")->SetAccessor(
3675 ExpectString("obj1[239]", "239");
3677 ExpectString("obj1['239']", "239");
6071 v8::Handle<v8::Object> obj1 = templ1->GetFunction()->NewInstance();
6076 CHECK_EQ(1, type_switch->match(obj1));
6081 CHECK_EQ(1, type_switch->match(obj1));