Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |