Home | History | Annotate | Download | only in debug

Lines Matching refs:Details

241 // A copy of the PropertyType enum from property-details.h
791 var details = %DebugGetPropertyDetails(this.value_, TO_NAME(name));
792 if (details) {
793 return new PropertyMirror(this, name, details);
1128 var details = %DebugGetPropertyDetails(this.value_, TO_STRING(i));
1130 if (details) {
1131 value = new PropertyMirror(this, i, details);
1460 * @param {Array} details Details about the property
1464 function PropertyMirror(mirror, name, details) {
1468 this.value_ = details[0];
1469 this.details_ = details[1];
1470 this.is_interceptor_ = details[2];
1471 if (details.length > 3) {
1472 this.exception_ = details[3];
1473 this.getter_ = details[4];
1474 this.setter_ = details[5];
1646 * Wrapper for the frame details information retreived from the VM. The frame
1647 * details from the VM is an array with the following content. See runtime.cc
1825 FrameMirror.prototype.details = function() {
2246 * @param {Array=} opt_details Raw scope details data
2263 ScopeMirror.prototype.details = function() {
2437 * @param {boolean} details Set to true to include details
2443 function MakeMirrorSerializer(details, options) {
2444 return new JSONProtocolSerializer(details, options);
2450 * @param {boolean} details Indicates whether to include details for the mirror
2454 function JSONProtocolSerializer(details, options) {
2455 this.details_ = details;
2584 details) {
2649 this.serializeObject_(mirror, content, details);
2735 details) {
2809 if (details) {