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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4.html

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.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4.html b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4.html
index f40a8d4b6ad4acd7a3b9c586bed6ddf8db22d393..f199794e92154688f3a956128454539b42fa6f28 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4.html
@@ -12,6 +12,9 @@ async function test()
InspectorTest.markStep('testAsyncFunction');
await test('async function foo() { }');
+ InspectorTest.markStep('testAsyncArrowFunction');
+ await test('var sum = async (x, y) => x + y;');
+
InspectorTest.markStep('testGeneratorFunction');
await test('function* foo() { }');

Powered by Google App Engine
This is Rietveld 408576698