| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 function BreakPoint() {} | 153 function BreakPoint() {} |
| 154 | 154 |
| 155 /** @return {!BreakPoint|undefined} */ | 155 /** @return {!BreakPoint|undefined} */ |
| 156 BreakPoint.prototype.script_break_point = function() {} | 156 BreakPoint.prototype.script_break_point = function() {} |
| 157 | 157 |
| 158 /** @return {number} */ | 158 /** @return {number} */ |
| 159 BreakPoint.prototype.number = function() {} | 159 BreakPoint.prototype.number = function() {} |
| 160 | 160 |
| 161 | 161 |
| 162 /** @interface */ | 162 /** @interface */ |
| 163 function BreakEvent() {} | |
| 164 | |
| 165 /** @return {!Array<!BreakPoint>|undefined} */ | |
| 166 BreakEvent.prototype.breakPointsHit = function() {} | |
| 167 | |
| 168 | |
| 169 /** @interface */ | |
| 170 function ExecutionState() {} | 163 function ExecutionState() {} |
| 171 | 164 |
| 172 /** | 165 /** |
| 173 * @param {string} source | 166 * @param {string} source |
| 174 */ | 167 */ |
| 175 ExecutionState.prototype.evaluateGlobal = function(source) {} | 168 ExecutionState.prototype.evaluateGlobal = function(source) {} |
| 176 | 169 |
| 177 /** @return {number} */ | 170 /** @return {number} */ |
| 178 ExecutionState.prototype.frameCount = function() {} | 171 ExecutionState.prototype.frameCount = function() {} |
| 179 | 172 |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} | 474 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} |
| 482 | 475 |
| 483 /** | 476 /** |
| 484 * @interface | 477 * @interface |
| 485 * @extends {Mirror} | 478 * @extends {Mirror} |
| 486 */ | 479 */ |
| 487 function ContextMirror() {} | 480 function ContextMirror() {} |
| 488 | 481 |
| 489 /** @return {string|undefined} */ | 482 /** @return {string|undefined} */ |
| 490 ContextMirror.prototype.data = function() {} | 483 ContextMirror.prototype.data = function() {} |
| OLD | NEW |