Home | History | Annotate | Download | only in inspector

Lines Matching refs:property

249      * @param {string} property
254 wrapPropertyInArray: function(array, property, groupName, forceValueType, generatePreview)
257 if (typeof array[i] === "object" && property in array[i])
258 array[i][property] = this.wrapObject(array[i][property], groupName, forceValueType, generatePreview);
390 for (var property of properties) {
392 if (isSymbol(property))
393 name = /** @type {string} */ (injectedScript._describe(property));
395 name = typeof property === "number" ? ("" + property) : /** @type {string} */(property);
397 if (propertyProcessed[property])
401 propertyProcessed[property] = true;
402 var descriptor = nullifyObjectProto(Object.getOwnPropertyDescriptor(o, property));
407 descriptor.value = object[property];
413 // Not all bindings provide proper descriptors. Fall back to the writable, configurable property.
417 descriptor = { name: name, value: o[property], writable: false, configurable: false, enumerable: false, __proto__: null };
437 if (isSymbol(property))
438 descriptor.symbol = property;
478 // Avoid OOM crashes from getting all own property names of a large TypedArray.
482 property descriptors.
916 // Ignore __proto__ property.
920 // Ignore length property of array.
924 // Ignore size property of map, set.
961 var property = { name: name, type: type, __proto__: null };
964 property.subtype = subtype;
968 property.valuePreview = subPreview;
975 property.value = description;
977 this._appendPropertyPreview(preview, property, propertiesThreshold);
983 * @param {!Object} property
986 _appendPropertyPreview: function(preview, property, propertiesThreshold)
988 if (toString(property.name >>> 0) === property.name)
995 push(preview.properties, property);