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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-5-expected.txt

Issue 2770123002: DevTools: produce javascript outline for javascript classess (Closed)
Patch Set: address comments Created 3 years, 9 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/outline-javascript-5-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-5-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-5-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ce8a482892a92c034ae45373a8e16b5cbac25854
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-5-expected.txt
@@ -0,0 +1,32 @@
+Verify javascript outline
+
+
+Running: testComputedProperty
+Text:
+ a.b[c] = function() { };
+Outline:
+
+Running: testComputedPropertyInTheMiddle
+Text:
+ a.b[c].d = function() { };
+Outline:
+ d():0:0
+
+Running: testComputedPropertyForExpression
+Text:
+ (a || b).c = function() { };
+Outline:
+ c():0:0
+
+Running: testPropertyStringLiteral
+Text:
+ var foo = { "bar": function() { }}
+Outline:
+ "bar"():0:12
dgozman 2017/03/24 23:07:30 Let's drop this and next one
lushnikov 2017/03/25 06:38:34 Done.
+
+Running: testPropertyNumberLiteral
+Text:
+ var foo = { 42: function() { }}
+Outline:
+ 42():0:12
+

Powered by Google App Engine
This is Rietveld 408576698