Home | History | Annotate | Download | only in src

Lines Matching refs:details

703   var details = %DebugGetPropertyDetails(this.value_, %ToString(name));
704 if (details) {
705 return new PropertyMirror(this, name, details);
978 var details = %DebugGetPropertyDetails(this.value_, %ToString(i));
980 if (details) {
981 value = new PropertyMirror(this, i, details);
1100 * @param {Array} details Details about the property
1104 function PropertyMirror(mirror, name, details) {
1108 this.value_ = details[0];
1109 this.details_ = details[1];
1110 if (details.length > 2) {
1111 this.exception_ = details[2]
1112 this.getter_ = details[3];
1113 this.setter_ = details[4];
1253 * Wrapper for the frame details information retreived from the VM. The frame
1254 * details
1887 * @param {boolean} details Set to true to include details
1893 function MakeMirrorSerializer(details, options) {
1894 return new JSONProtocolSerializer(details, options);
1900 * @param {boolean} details Indicates whether to include details for the mirror
1904 function JSONProtocolSerializer(details, options) {
1905 this.details_ = details;
2031 details) {
2090 this.serializeObject_(mirror, content, details);
2173 details) {
2221 if (details) {
2228 if (details) {