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

Side by Side Diff: Source/core/inspector/injected_script_externs.js

Issue 1156823005: DevTools: delete JavaScriptCallFrame.idl (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /** @interface */
6 function JavaScriptCallFrame()
7 {
8 /** @type {!JavaScriptCallFrame} */
9 this.caller;
10 /** @type {number} */
11 this.sourceID;
12 /** @type {number} */
13 this.line;
14 /** @type {number} */
15 this.column;
16 /** @type {!Array.<!Object>} */
17 this.scopeChain;
18 /** @type {!Object} */
19 this.thisObject;
20 /** @type {string} */
21 this.stepInPositions;
22 /** @type {string} */
23 this.functionName;
24 /** @type {number} */
25 this.functionLine;
26 /** @type {number} */
27 this.functionColumn;
28 /** @type {boolean} */
29 this.isAtReturn;
30 /** @type {*} */
31 this.returnValue;
32 }
33
34 /**
35 * @param {string} script
36 * @param {!Object=} scopeExtension
37 * @return {*}
38 */
39 JavaScriptCallFrame.prototype.evaluateWithExceptionDetails = function(script, sc opeExtension) {}
40
41 /**
42 * @return {*}
43 */
44 JavaScriptCallFrame.prototype.restart = function() {}
45
46 /**
47 * @param {number=} scopeIndex
48 * @param {?string=} variableName
49 * @param {*=} newValue
50 * @return {*}
51 */
52 JavaScriptCallFrame.prototype.setVariableValue = function(scopeIndex, variableNa me, newValue) {}
53
54 /**
55 * @param {number} scopeIndex
56 * @return {number}
57 */
58 JavaScriptCallFrame.prototype.scopeType = function(scopeIndex) {}
59
OLDNEW
« no previous file with comments | « Source/core/inspector/JavaScriptCallFrame.idl ('k') | Source/devtools/scripts/compile_frontend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698