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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 | 164 |
165 /** @return {!Array<!BreakPoint>|undefined} */ | 165 /** @return {!Array<!BreakPoint>|undefined} */ |
166 BreakEvent.prototype.breakPointsHit = function() {} | 166 BreakEvent.prototype.breakPointsHit = function() {} |
167 | 167 |
168 | 168 |
169 /** @interface */ | 169 /** @interface */ |
170 function ExecutionState() {} | 170 function ExecutionState() {} |
171 | 171 |
172 /** | 172 /** |
173 * @param {string} source | 173 * @param {string} source |
174 * @param {boolean} disableBreak | |
175 * @param {*=} additionalContext | |
176 */ | 174 */ |
177 ExecutionState.prototype.evaluateGlobal = function(source, disableBreak, additio
nalContext) {} | 175 ExecutionState.prototype.evaluateGlobal = function(source) {} |
178 | 176 |
179 /** @return {number} */ | 177 /** @return {number} */ |
180 ExecutionState.prototype.frameCount = function() {} | 178 ExecutionState.prototype.frameCount = function() {} |
181 | 179 |
182 /** | 180 /** |
183 * @param {number} index | 181 * @param {number} index |
184 * @return {!FrameMirror} | 182 * @return {!FrameMirror} |
185 */ | 183 */ |
186 ExecutionState.prototype.frame = function(index) {} | 184 ExecutionState.prototype.frame = function(index) {} |
187 | 185 |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 FrameMirror.prototype.allScopes = function(ignoreNestedScopes) {} | 430 FrameMirror.prototype.allScopes = function(ignoreNestedScopes) {} |
433 | 431 |
434 /** @return {!FrameDetails} */ | 432 /** @return {!FrameDetails} */ |
435 FrameMirror.prototype.details = function() {} | 433 FrameMirror.prototype.details = function() {} |
436 | 434 |
437 /** @return {!ScriptMirror} */ | 435 /** @return {!ScriptMirror} */ |
438 FrameMirror.prototype.script = function() {} | 436 FrameMirror.prototype.script = function() {} |
439 | 437 |
440 /** | 438 /** |
441 * @param {string} source | 439 * @param {string} source |
442 * @param {boolean} disableBreak | |
443 */ | 440 */ |
444 FrameMirror.prototype.evaluate = function(source, disableBreak) {} | 441 FrameMirror.prototype.evaluate = function(source) {} |
445 | 442 |
446 FrameMirror.prototype.restart = function() {} | 443 FrameMirror.prototype.restart = function() {} |
447 | 444 |
448 /** @param {number} index */ | 445 /** @param {number} index */ |
449 FrameMirror.prototype.scope = function(index) {} | 446 FrameMirror.prototype.scope = function(index) {} |
450 | 447 |
451 | 448 |
452 /** | 449 /** |
453 * @interface | 450 * @interface |
454 * @extends {Mirror} | 451 * @extends {Mirror} |
(...skipping 29 matching lines...) Expand all Loading... |
484 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} | 481 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} |
485 | 482 |
486 /** | 483 /** |
487 * @interface | 484 * @interface |
488 * @extends {Mirror} | 485 * @extends {Mirror} |
489 */ | 486 */ |
490 function ContextMirror() {} | 487 function ContextMirror() {} |
491 | 488 |
492 /** @return {string|undefined} */ | 489 /** @return {string|undefined} */ |
493 ContextMirror.prototype.data = function() {} | 490 ContextMirror.prototype.data = function() {} |
OLD | NEW |