Lines Matching refs:properties
501 * response is received the properties will be changed with their resolved
503 * @param {Object} object Object whose properties should be resolved.
506 * @param {boolean} noIntrinsic Whether intrinsic properties should be included.
577 var properties = msg.getBody().object.properties;
578 for (var j = 0; j < properties.length; j++)
579 result[properties[j].name] = true;
607 * all its properties.
608 * @param{string} expressionString Expression whose properties should be
626 var props = result.value.objectId.properties;
627 // Put all object properties into the map.
1083 * Collects properties for an object from the debugger response.
1086 * properties into.
1087 * @param {boolean} noIntrinsic Whether intrinsic properties should be
1092 devtools.DebuggerAgent.propertiesToProxies_(object.properties, result);
1098 // Don't add 'prototype' property since it is one of the regualar properties.
1103 * For each property in "properties" creates its proxy representative.
1104 * @param {Array.<Object>} properties Receiver properties or locals array from
1108 devtools.DebuggerAgent.propertiesToProxies_ = function(properties, result)
1111 for (var i = 0; i < properties.length; ++i) {
1112 var property = properties[i];