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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4-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-4-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4-expected.txt
index 810ae02ece599a4217807cacb4ec13ba8ca39ef4..d01f43cb7733412a15a38f4265198dd599db404d 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4-expected.txt
@@ -5,12 +5,19 @@ Running: testAsyncFunction
Text:
async function foo() { }
Outline:
- foo():0:15
+ async foo():0:15
+
+Running: testAsyncArrowFunction
+Text:
+ var sum = async (x, y) => x + y;
+Outline:
+ async sum(x, y):0:4
Running: testGeneratorFunction
Text:
function* foo() { }
Outline:
+ *foo():0:10
Running: testMismatchBrackets
Text:

Powered by Google App Engine
This is Rietveld 408576698