Home | History | Annotate | Download | only in cctest

Lines Matching refs:GetOwnPropertyDescriptor

273       "    var desc = Object.getOwnPropertyDescriptor(source, key);"
1927 CHECK(CompileRun("desc1 = Object.getOwnPropertyDescriptor(q, 'acc');"
1931 CHECK(CompileRun("desc2 = Object.getOwnPropertyDescriptor(q2, 'acc');"
6545 // Uses getOwnPropertyDescriptor to check the configurable status
6547 "var prop = Object.getOwnPropertyDescriptor( "
6600 "Object.getOwnPropertyDescriptor( "
6678 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
6679 ExpectTrue("Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
6695 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
6696 ExpectTrue("Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
6710 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
6711 ExpectTrue("Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
6720 ExpectTrue("!Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
6721 ExpectTrue("!Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
6764 ExpectTrue("!Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
6765 ExpectTrue("!Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
9716 CompileRun("Object.getOwnPropertyDescriptor(this, 'this_x').get"))
9947 CHECK(CompileRun("Object.getOwnPropertyDescriptor(other, 'blocked_prop')")
9956 CHECK(CompileRun("Object.getOwnPropertyDescriptor(other, '239')").IsEmpty());
9968 CHECK(CompileRun("Object.getOwnPropertyDescriptor(other, 'js_accessor_p')")
9975 "Object.getOwnPropertyDescriptor(other, 'js_accessor_p').get", getter);
9977 "Object.getOwnPropertyDescriptor(other, 'js_accessor_p').set", setter);
9979 "Object.getOwnPropertyDescriptor(other, 'js_accessor_p').value");
9987 CHECK(CompileRun("Object.getOwnPropertyDescriptor(other, '42')").IsEmpty());
9992 ExpectObject("Object.getOwnPropertyDescriptor(other, '42').get", el_getter);
9993 ExpectObject("Object.getOwnPropertyDescriptor(other, '42').set", el_setter);
9994 ExpectUndefined("Object.getOwnPropertyDescriptor(other, '42').value");
10011 "Object.getOwnPropertyDescriptor(other, 'accessible_prop').value");
10098 CHECK(CompileRun("Object.getOwnPropertyDescriptor(other, 'blocked_prop')")
11132 " descriptor = Object.getOwnPropertyDescriptor(func1, 'prototype');"
11154 " descriptor = Object.getOwnPropertyDescriptor(func2, 'prototype');"
23469 "var f = Object.getOwnPropertyDescriptor(p, '__proto__').set;"
23473 "var f = Object.getOwnPropertyDescriptor(p, '__proto__').get;"
23695 TEST(GetOwnPropertyDescriptor) {
23709 x->GetOwnPropertyDescriptor(env.local(), v8_str("no_prop"))
23713 x->GetOwnPropertyDescriptor(env.local(), v8_str("p0")).ToLocalChecked();
23720 x->GetOwnPropertyDescriptor(env.local(), v8_str("p1")).ToLocalChecked();