Home | History | Annotate | Download | only in es7

Lines Matching full:configurable

145 assertTrue(notifyDesc.configurable);
183 configurable: true,
335 configurable: true,
340 configurable: false,
345 configurable: false,
372 configurable: true,
377 configurable: false,
382 configurable: false,
867 Object.defineProperty(obj, "a", {get: function() {}, configurable: true});
874 Object.defineProperty(obj, "a", {value: 11, configurable: true});
925 Object.defineProperty(obj, "1", {get: function() {}, configurable: true});
932 Object.defineProperty(obj, "1", {value: 11, configurable: true});
968 Object.defineProperty(obj, symbol, {get: function() {}, configurable: true});
1014 Object.defineProperty(obj, prop, {get: function() {}, configurable: true});
1021 Object.defineProperty(obj, prop, {value: 11, configurable: true});
1156 if (!desc || desc.configurable)
1170 Object.defineProperty(arr, '0', {configurable: false});
1172 Object.defineProperty(arr2, '0', {get: function(){}, configurable: false});