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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-8-expected.txt

Issue 2569563002: DevTools: support pretty-print of async/await (Closed)
Patch Set: Created 4 years 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/pretty-print-javascript-8-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-8-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-8-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6c3f1cfd0e1f71d2e4e709bfda657a8e717e0d83
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-8-expected.txt
@@ -0,0 +1,17 @@
+Verifies JavaScript pretty-printing functionality.
+
+
+Running: asyncAwaitSupport
+====== 8< ------
+async function foo() {
+ return await Promise.resolve(1);
+}
+
+------ >8 ======
+Correct mapping for <async>
+Correct mapping for <function>
+Correct mapping for <foo>
+Correct mapping for <return>
+Correct mapping for <Promise>
+Correct mapping for <resolve>
+

Powered by Google App Engine
This is Rietveld 408576698