Lines Matching refs:Details
241 // A copy of the PropertyType enum from property-details.h
789 var details = %DebugGetPropertyDetails(this.value_, TO_NAME(name));
790 if (details) {
791 return new PropertyMirror(this, name, details);
1117 var details = %DebugGetPropertyDetails(this.value_, TO_STRING(i));
1119 if (details) {
1120 value = new PropertyMirror(this, i, details);
1457 * @param {Array} details Details about the property
1461 function PropertyMirror(mirror, name, details) {
1465 this.value_ = details[0];
1466 this.details_ = details[1];
1467 this.is_interceptor_ = details[2];
1468 if (details.length > 3) {
1469 this.exception_ = details[3];
1470 this.getter_ = details[4];
1471 this.setter_ = details[5];
1642 * Wrapper for the frame details information retreived from the VM. The frame
1643 * details from the VM is an array with the following content. See runtime.cc
1826 FrameMirror.prototype.details = function() {
2244 * @param {Array=} opt_details Raw scope details data
2261 ScopeMirror.prototype.details = function() {
2440 * @param {boolean} details Set to true to include details
2446 function MakeMirrorSerializer(details, options) {
2447 return new JSONProtocolSerializer(details, options);
2453 * @param {boolean} details Indicates whether to include details for the mirror
2457 function JSONProtocolSerializer(details, options) {
2458 this.details_ = details;
2587 details) {
2652 this.serializeObject_(mirror, content, details);
2738 details) {
2812 if (details) {