Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: src/inspector/debugger_script_externs.js

Issue 2415073003: [debug] [reland] Consistently use script from FrameMirror (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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() {}
OLDNEW
« src/inspector/debugger-script.js ('K') | « src/inspector/debugger-script.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698