| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** @typedef {{ | 5 /** @typedef {{ |
| 6 type: string, | 6 type: string, |
| 7 object: !Object, | 7 object: !Object, |
| 8 name: (string|undefined), | 8 name: (string|undefined), |
| 9 startLocation: (!RawLocation|undefined), | 9 startLocation: (!RawLocation|undefined), |
| 10 endLocation: (!RawLocation|undefined) | 10 endLocation: (!RawLocation|undefined) |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 | 459 |
| 460 /** | 460 /** |
| 461 * @param {boolean=} ignoreNestedScopes | 461 * @param {boolean=} ignoreNestedScopes |
| 462 * @return {!Array<!ScopeMirror>} | 462 * @return {!Array<!ScopeMirror>} |
| 463 */ | 463 */ |
| 464 FrameMirror.prototype.allScopes = function(ignoreNestedScopes) {} | 464 FrameMirror.prototype.allScopes = function(ignoreNestedScopes) {} |
| 465 | 465 |
| 466 /** @return {!FrameDetails} */ | 466 /** @return {!FrameDetails} */ |
| 467 FrameMirror.prototype.details = function() {} | 467 FrameMirror.prototype.details = function() {} |
| 468 | 468 |
| 469 /** @return {!ScriptMirror} */ |
| 470 FrameMirror.prototype.script = function() {} |
| 471 |
| 469 /** | 472 /** |
| 470 * @param {string} source | 473 * @param {string} source |
| 471 * @param {boolean} disableBreak | 474 * @param {boolean} disableBreak |
| 472 */ | 475 */ |
| 473 FrameMirror.prototype.evaluate = function(source, disableBreak) {} | 476 FrameMirror.prototype.evaluate = function(source, disableBreak) {} |
| 474 | 477 |
| 475 FrameMirror.prototype.restart = function() {} | 478 FrameMirror.prototype.restart = function() {} |
| 476 | 479 |
| 477 /** @param {number} index */ | 480 /** @param {number} index */ |
| 478 FrameMirror.prototype.scope = function(index) {} | 481 FrameMirror.prototype.scope = function(index) {} |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} | 516 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} |
| 514 | 517 |
| 515 /** | 518 /** |
| 516 * @interface | 519 * @interface |
| 517 * @extends {Mirror} | 520 * @extends {Mirror} |
| 518 */ | 521 */ |
| 519 function ContextMirror() {} | 522 function ContextMirror() {} |
| 520 | 523 |
| 521 /** @return {string|undefined} */ | 524 /** @return {string|undefined} */ |
| 522 ContextMirror.prototype.data = function() {} | 525 ContextMirror.prototype.data = function() {} |
| OLD | NEW |