Lines Matching full:propertydescriptor
242 var desc = new PropertyDescriptor();
266 var desc = new PropertyDescriptor();
335 var desc = new PropertyDescriptor();
376 function PropertyDescriptor() {
393 PropertyDescriptor.prototype.__proto__ = null;
394 PropertyDescriptor.prototype.toString = function() {
395 return "[object PropertyDescriptor]";
398 PropertyDescriptor.prototype.setValue = function(value) {
404 PropertyDescriptor.prototype.getValue = function() {
409 PropertyDescriptor.prototype.hasValue = function() {
414 PropertyDescriptor.prototype.setEnumerable = function(enumerable) {
420 PropertyDescriptor.prototype.isEnumerable = function () {
425 PropertyDescriptor.prototype.hasEnumerable = function() {
430 PropertyDescriptor.prototype.setWritable = function(writable) {
436 PropertyDescriptor.prototype.isWritable = function() {
441 PropertyDescriptor.prototype.hasWritable = function() {
446 PropertyDescriptor.prototype.setConfigurable = function(configurable) {
452 PropertyDescriptor.prototype.hasConfigurable = function() {
457 PropertyDescriptor.prototype.isConfigurable = function() {
462 PropertyDescriptor.prototype.setGet = function(get) {
468 PropertyDescriptor.prototype.getGet = function() {
473 PropertyDescriptor.prototype.hasGetter = function() {
478 PropertyDescriptor.prototype.setSet = function(set) {
484 PropertyDescriptor.prototype.getSet = function() {
489 PropertyDescriptor.prototype.hasSetter = function() {
506 var desc = new PropertyDescriptor();