| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium 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 11 matching lines...) Expand all Loading... |
| 22 id: number, | 22 id: number, |
| 23 name: string, | 23 name: string, |
| 24 sourceURL: (string|undefined), | 24 sourceURL: (string|undefined), |
| 25 sourceMappingURL: (string|undefined), | 25 sourceMappingURL: (string|undefined), |
| 26 source: string, | 26 source: string, |
| 27 startLine: number, | 27 startLine: number, |
| 28 endLine: number, | 28 endLine: number, |
| 29 startColumn: number, | 29 startColumn: number, |
| 30 endColumn: number, | 30 endColumn: number, |
| 31 executionContextId: number, | 31 executionContextId: number, |
| 32 isContentScript: boolean, | 32 executionContextAuxData: string, |
| 33 isInternalScript: boolean | 33 isInternalScript: boolean |
| 34 }} */ | 34 }} */ |
| 35 var FormattedScript; | 35 var FormattedScript; |
| 36 | 36 |
| 37 /** @typedef {{ | 37 /** @typedef {{ |
| 38 functionName: string, | 38 functionName: string, |
| 39 location: !RawLocation, | 39 location: !RawLocation, |
| 40 this: !Object, | 40 this: !Object, |
| 41 scopeChain: !Array<!Scope>, | 41 scopeChain: !Array<!Scope>, |
| 42 functionLocation: (RawLocation|undefined), | 42 functionLocation: (RawLocation|undefined), |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} | 539 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} |
| 540 | 540 |
| 541 /** | 541 /** |
| 542 * @interface | 542 * @interface |
| 543 * @extends {Mirror} | 543 * @extends {Mirror} |
| 544 */ | 544 */ |
| 545 function ContextMirror() {} | 545 function ContextMirror() {} |
| 546 | 546 |
| 547 /** @return {string|undefined} */ | 547 /** @return {string|undefined} */ |
| 548 ContextMirror.prototype.data = function() {} | 548 ContextMirror.prototype.data = function() {} |
| OLD | NEW |