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

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

Issue 2516973003: [inspector] Expose scopes for suspended generator objects (Closed)
Patch Set: Address comments Created 4 years, 1 month 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
« no previous file with comments | « src/inspector/debugger-script.js ('k') | src/inspector/v8-debugger.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 384
385 /** @return {string} */ 385 /** @return {string} */
386 GeneratorMirror.prototype.status = function() {} 386 GeneratorMirror.prototype.status = function() {}
387 387
388 /** @return {!SourceLocation|undefined} */ 388 /** @return {!SourceLocation|undefined} */
389 GeneratorMirror.prototype.sourceLocation = function() {} 389 GeneratorMirror.prototype.sourceLocation = function() {}
390 390
391 /** @return {!FunctionMirror} */ 391 /** @return {!FunctionMirror} */
392 GeneratorMirror.prototype.func = function() {} 392 GeneratorMirror.prototype.func = function() {}
393 393
394 /** @return {number} */
395 GeneratorMirror.prototype.scopeCount = function() {}
396
397 /**
398 * @param {number} index
399 * @return {!ScopeMirror|undefined}
400 */
401 GeneratorMirror.prototype.scope = function(index) {}
402
394 403
395 /** 404 /**
396 * @interface 405 * @interface
397 * @extends {Mirror} 406 * @extends {Mirror}
398 */ 407 */
399 function PropertyMirror() {} 408 function PropertyMirror() {}
400 409
401 /** @return {!Mirror} */ 410 /** @return {!Mirror} */
402 PropertyMirror.prototype.value = function() {} 411 PropertyMirror.prototype.value = function() {}
403 412
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} 481 ScopeMirror.prototype.setVariableValue = function(name, newValue) {}
473 482
474 /** 483 /**
475 * @interface 484 * @interface
476 * @extends {Mirror} 485 * @extends {Mirror}
477 */ 486 */
478 function ContextMirror() {} 487 function ContextMirror() {}
479 488
480 /** @return {string|undefined} */ 489 /** @return {string|undefined} */
481 ContextMirror.prototype.data = function() {} 490 ContextMirror.prototype.data = function() {}
OLDNEW
« no previous file with comments | « src/inspector/debugger-script.js ('k') | src/inspector/v8-debugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698