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

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

Issue 2670823002: [debugger] remove mirror cache and v8::Debug::GetMirror. (Closed)
Patch Set: address comments. Created 3 years, 10 months 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') | test/cctest/test-debug.cc » ('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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 231
232 /** @return {number} */ 232 /** @return {number} */
233 FrameDetails.prototype.sourcePosition = function() {} 233 FrameDetails.prototype.sourcePosition = function() {}
234 234
235 /** @return {*} */ 235 /** @return {*} */
236 FrameDetails.prototype.returnValue = function() {} 236 FrameDetails.prototype.returnValue = function() {}
237 237
238 /** @return {number} */ 238 /** @return {number} */
239 FrameDetails.prototype.scopeCount = function() {} 239 FrameDetails.prototype.scopeCount = function() {}
240 240
241
242 /** @param {boolean} value */
243 function ToggleMirrorCache(value) {}
244
245 /** 241 /**
246 * @param {*} value 242 * @param {*} value
247 * @param {boolean=} transient
248 * @return {!Mirror} 243 * @return {!Mirror}
249 */ 244 */
250 function MakeMirror(value, transient) {} 245 function MakeMirror(value) {}
251 246
252 247
253 /** @interface */ 248 /** @interface */
254 function Mirror() {} 249 function Mirror() {}
255 250
256 /** @return {boolean} */ 251 /** @return {boolean} */
257 Mirror.prototype.isFunction = function() {} 252 Mirror.prototype.isFunction = function() {}
258 253
259 /** @return {boolean} */ 254 /** @return {boolean} */
260 Mirror.prototype.isGenerator = function() {} 255 Mirror.prototype.isGenerator = function() {}
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} 457 ScopeMirror.prototype.setVariableValue = function(name, newValue) {}
463 458
464 /** 459 /**
465 * @interface 460 * @interface
466 * @extends {Mirror} 461 * @extends {Mirror}
467 */ 462 */
468 function ContextMirror() {} 463 function ContextMirror() {}
469 464
470 /** @return {string|undefined} */ 465 /** @return {string|undefined} */
471 ContextMirror.prototype.data = function() {} 466 ContextMirror.prototype.data = function() {}
OLDNEW
« no previous file with comments | « src/inspector/debugger-script.js ('k') | test/cctest/test-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698