Chromium Code Reviews

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-identifiers.js

Issue 1887913002: DevTools: improve identifier extraction in SourceMapNamesResolver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-identifiers.js
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-identifiers.js b/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-identifiers.js
new file mode 100644
index 0000000000000000000000000000000000000000..92eca8e9fffa860b44f2136dbf11fe456475ef09
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/resolve-identifiers.js
@@ -0,0 +1,8 @@
+function testFunction() {
+ var pos = 10;
+ for (var pos_1 = 0; pos_1 < 1; pos_1++) {
+ console.log(pos_1);
+ debugger;
+ }
+}
+//# sourceMappingURL=resolve-identifiers.js.map

Powered by Google App Engine