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

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

Issue 2519773003: [debug] Add Eval scope type to inspector protocol (Closed)
Patch Set: 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
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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698