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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 Verifies JavaScript pretty-printing functionality.
2
3
4 Running: asyncAwaitSupport
5 ====== 8< ------
6 async function foo() {
7 return await Promise.resolve(1);
8 }
9
10 ------ >8 ======
11 Correct mapping for <async>
12 Correct mapping for <function>
13 Correct mapping for <foo>
14 Correct mapping for <return>
15 Correct mapping for <Promise>
16 Correct mapping for <resolve>
17
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698