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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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() {} |
OLD | NEW |