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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-variable-names-origin.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
Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-variable-names-origin.js
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-variable-names-origin.js b/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-variable-names-origin.js
new file mode 100644
index 0000000000000000000000000000000000000000..919d56290e11d1246f75789657e06f5dfe32959f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-variable-names-origin.js
@@ -0,0 +1,7 @@
+function testFunction()
+{
+ var longObject = {};
+ var longMap = new Map();
+ debugger;
+ return longMap.get(longObject);
+}

Powered by Google App Engine
This is Rietveld 408576698