Home | History | Annotate | Download | only in cctest

Lines Matching full:configurable

1999              "   enumerable: true, configurable: true});"
5321 // Uses getOwnPropertyDescriptor to check the configurable status
5325 "prop.configurable;"));
5329 // Redefine get - but still configurable
5332 " configurable: true };"
5338 // Check that the accessor is still configurable
5342 // Redefine to a non-configurable
5345 " configurable: false };"
5372 "prop.configurable;"));
5378 " configurable: true };"
5391 " configurable: false };"
5437 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5438 ExpectTrue("Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
5441 "{ get: function() { return 'y'; }, configurable: true })");
5447 "{ get: function() { return 'y'; }, configurable: true })");
5452 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5453 ExpectTrue("Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
5463 ExpectTrue("Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5464 ExpectTrue("Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
5466 // Define getters/setters, but now make them not configurable.
5468 "{ get: function() { return 'z'; }, configurable: false })");
5470 "{ get: function() { return 'z'; }, configurable: false })");
5472 ExpectTrue("!Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5473 ExpectTrue("!Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
5508 ExpectTrue("!Object.getOwnPropertyDescriptor(obj1, 'x').configurable");
5509 ExpectTrue("!Object.getOwnPropertyDescriptor(obj2, 'x').configurable");
9085 " other, 'blocked_prop', {configurable: false})");
19179 " { configurable: true, enumerable: true, value: 3 });"