| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 /** @interface */ |
| 6 function JavaScriptCallFrame() |
| 7 { |
| 8 /** @type {!JavaScriptCallFrame} */ |
| 9 this.caller; |
| 10 /** @type {number} */ |
| 11 this.sourceID; |
| 12 /** @type {number} */ |
| 13 this.line; |
| 14 /** @type {number} */ |
| 15 this.column; |
| 16 /** @type {!Array.<!Object>} */ |
| 17 this.scopeChain; |
| 18 /** @type {!Object} */ |
| 19 this.thisObject; |
| 20 /** @type {string} */ |
| 21 this.stepInPositions; |
| 22 /** @type {string} */ |
| 23 this.functionName; |
| 24 /** @type {number} */ |
| 25 this.functionLine; |
| 26 /** @type {number} */ |
| 27 this.functionColumn; |
| 28 /** @type {boolean} */ |
| 29 this.isAtReturn; |
| 30 /** @type {*} */ |
| 31 this.returnValue; |
| 32 } |
| 33 |
| 34 /** |
| 35 * @param {string} script |
| 36 * @param {!Object=} scopeExtension |
| 37 * @return {*} |
| 38 */ |
| 39 JavaScriptCallFrame.prototype.evaluateWithExceptionDetails = function(script, sc
opeExtension) {} |
| 40 |
| 41 /** |
| 42 * @return {*} |
| 43 */ |
| 44 JavaScriptCallFrame.prototype.restart = function() {} |
| 45 |
| 46 /** |
| 47 * @param {number=} scopeIndex |
| 48 * @param {?string=} variableName |
| 49 * @param {*=} newValue |
| 50 * @return {*} |
| 51 */ |
| 52 JavaScriptCallFrame.prototype.setVariableValue = function(scopeIndex, variableNa
me, newValue) {} |
| 53 |
| 54 /** |
| 55 * @param {number} scopeIndex |
| 56 * @return {number} |
| 57 */ |
| 58 JavaScriptCallFrame.prototype.scopeType = function(scopeIndex) {} |
| 59 |
| OLD | NEW |