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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js

Issue 1653053002: Devtools: parse variables scopes and sourcemap them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
diff --git a/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js b/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
index 90a2004f672a7c02b07ea7d331c308bed79f7c32..97565829c6529d96220495da77877c80970d1850 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
+++ b/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
@@ -225,6 +225,19 @@ JavaScriptCallFrame.prototype.scopeType = function(scopeIndex) {}
*/
JavaScriptCallFrame.prototype.scopeName = function(scopeIndex) {}
+/**
+ * @param {number} scopeIndex
+ * @return {?DebuggerAgent.Location}
+ */
+JavaScriptCallFrame.prototype.scopeStartLocation = function(scopeIndex) {}
+
+/**
+ * @param {number} scopeIndex
+ * @return {?DebuggerAgent.Location}
+ */
+JavaScriptCallFrame.prototype.scopeEndLocation = function(scopeIndex) {}
+
+
/** @type {!Window} */
var inspectedGlobalObject;
/** @type {number} */
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698