| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 ExecutionState.prototype.selectedFrame = function() {} | 191 ExecutionState.prototype.selectedFrame = function() {} |
| 192 | 192 |
| 193 | 193 |
| 194 /** @enum */ | 194 /** @enum */ |
| 195 var ScopeType = { Global: 0, | 195 var ScopeType = { Global: 0, |
| 196 Local: 1, | 196 Local: 1, |
| 197 With: 2, | 197 With: 2, |
| 198 Closure: 3, | 198 Closure: 3, |
| 199 Catch: 4, | 199 Catch: 4, |
| 200 Block: 5, | 200 Block: 5, |
| 201 Script: 6 }; | 201 Script: 6, |
| 202 Eval: 7 }; |
| 202 | 203 |
| 203 | 204 |
| 204 /** @typedef {{ | 205 /** @typedef {{ |
| 205 * script: number, | 206 * script: number, |
| 206 * position: number, | 207 * position: number, |
| 207 * line: number, | 208 * line: number, |
| 208 * column:number, | 209 * column:number, |
| 209 * start: number, | 210 * start: number, |
| 210 * end: number, | 211 * end: number, |
| 211 * }} | 212 * }} |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} | 473 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} |
| 473 | 474 |
| 474 /** | 475 /** |
| 475 * @interface | 476 * @interface |
| 476 * @extends {Mirror} | 477 * @extends {Mirror} |
| 477 */ | 478 */ |
| 478 function ContextMirror() {} | 479 function ContextMirror() {} |
| 479 | 480 |
| 480 /** @return {string|undefined} */ | 481 /** @return {string|undefined} */ |
| 481 ContextMirror.prototype.data = function() {} | 482 ContextMirror.prototype.data = function() {} |
| OLD | NEW |