Lines Matching refs:details
234 // A copy of the PropertyType enum from property-details.h
785 var details = %DebugGetPropertyDetails(this.value_, name);
786 if (details) {
787 return new PropertyMirror(this, name, details);
1127 var details = %DebugGetPropertyDetails(this.value_, TO_STRING(i));
1129 if (details) {
1130 value = new PropertyMirror(this, i, details);
1480 * @param {Array} details Details about the property
1484 function PropertyMirror(mirror, name, details) {
1488 this.value_ = details[0];
1489 this.details_ = details[1];
1490 this.is_interceptor_ = details[2];
1491 if (details.length > 3) {
1492 this.exception_ = details[3];
1493 this.getter_ = details[4];
1494 this.setter_ = details[5];
1667 * Wrapper for the frame details information retreived from the VM. The frame
1668 * details from the VM is an array with the following content. See runtime.cc
1853 FrameMirror.prototype.details = function() {
2290 * @param {Array=} opt_details Raw scope details data
2307 ScopeMirror.prototype.details = function() {
2482 * @param {boolean} details Set to true to include details
2488 function MakeMirrorSerializer(details, options) {
2489 return new JSONProtocolSerializer(details, options);
2495 * @param {boolean} details Indicates whether to include details for the mirror
2499 function JSONProtocolSerializer(details, options) {
2500 this.details_ = details;
2629 details) {
2694 this.serializeObject_(mirror, content, details);
2780 details) {
2854 if (details) {