Lines Matching full:obj1
5419 context->Global()->Set(v8_str("obj1"), templ->NewInstance());
5422 CHECK(CompileRun("obj1.x")->IsUndefined());
5425 CHECK(GetGlobalProperty(&context, "obj1")->
5428 ExpectString("obj1.x", "x");
5434 ExpectString("obj1.x", "x");
5437 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5440 CompileRun("Object.defineProperty(obj1, 'x',"
5443 ExpectString("obj1.x", "y");
5449 ExpectString("obj1.x", "y");
5452 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5455 CHECK(GetGlobalProperty(&context, "obj1")->
5460 ExpectString("obj1.x", "x");
5463 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5467 CompileRun("Object.defineProperty(obj1, 'x',"
5472 ExpectTrue("!Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5475 ExpectString("obj1.x", "z");
5478 CHECK(!GetGlobalProperty(&context, "obj1")->
5483 ExpectString("obj1.x", "z");
5493 context->Global()->Set(v8_str("obj1"), templ->NewInstance());
5496 CHECK(GetGlobalProperty(&context, "obj1")->SetAccessor(
5505 ExpectString("obj1.x", "x");
5508 ExpectTrue("!Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5511 CHECK(!GetGlobalProperty(&context, "obj1")->
5518 CompileRun("Object.defineProperty(obj1, 'x',"
5549 context->Global()->Set(v8_str("obj1"), templ->NewInstance());
5552 CHECK(GetGlobalProperty(&context, "obj1")->SetAccessor(
5561 ExpectString("obj1[239]", "239");
5563 ExpectString("obj1['239']", "239");
8085 v8::Handle<v8::Object> obj1 = templ1->GetFunction()->NewInstance();
8090 CHECK_EQ(1, type_switch->match(obj1));
8095 CHECK_EQ(1, type_switch->match(obj1));