Home | History | Annotate | Download | only in inspector

Lines Matching refs:property

252      * @param {string} property
257 wrapPropertyInArray: function(array, property, groupName, forceValueType, generatePreview)
260 if (typeof array[i] === "object" && property in array[i])
261 array[i][property] = this.wrapObject(array[i][property], groupName, forceValueType, generatePreview);
393 for (var property of properties) {
395 if (isSymbol(property))
396 name = /** @type {string} */ (injectedScript._describe(property));
398 name = typeof property === "number" ? ("" + property) : /** @type {string} */(property);
400 if (propertyProcessed[property])
404 propertyProcessed[property] = true;
405 var descriptor = nullifyObjectProto(Object.getOwnPropertyDescriptor(o, property));
410 descriptor.value = object[property];
416 // Not all bindings provide proper descriptors. Fall back to the writable, configurable property.
420 descriptor = { name: name, value: o[property], writable: false, configurable: false, enumerable: false, __proto__: null };
440 if (isSymbol(property))
441 descriptor.symbol = property;
481 // Avoid OOM crashes from getting all own property names of a large TypedArray.
485 property descriptors.
925 // Ignore __proto__ property.
929 // Ignore length property of array.
933 // Ignore size property of map, set.
969 var property = { name: name, type: type, __proto__: null };
972 property.subtype = subtype;
976 property.valuePreview = subPreview;
983 property.value = description;
985 this._appendPropertyPreview(preview, property, propertiesThreshold);
991 * @param {!Object} property
994 _appendPropertyPreview: function(preview, property, propertiesThreshold)
996 if (toString(property.name >>> 0) === property.name)
1003 push(preview.properties, property);