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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7-expected.txt

Issue 2560963002: [Devtools] Upgrade acorn services to use ECMAScript7 (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
1 Verifies JavaScript pretty-printing functionality. 1 Verifies JavaScript pretty-printing functionality.
2 2
3 3
4 Running: semicolonAfterFunctionExpression 4 Running: semicolonAfterFunctionExpression
5 ====== 8< ------ 5 ====== 8< ------
6 var onClick = function() { 6 var onClick = function() {
7 console.log('click!'); 7 console.log('click!');
8 }; 8 };
9 console.log('done'); 9 console.log('done');
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 Running: squashMultipleNewlines 72 Running: squashMultipleNewlines
73 ====== 8< ------ 73 ====== 8< ------
74 a(); 74 a();
75 75
76 b(); 76 b();
77 77
78 ------ >8 ====== 78 ------ >8 ======
79 Correct mapping for <a> 79 Correct mapping for <a>
80 Correct mapping for <b> 80 Correct mapping for <b>
81 81
82 Running: ensureExponentialOperator
83 ====== 8< ------
84 2 ** 3
85
86 ------ >8 ======
87 Correct mapping for <2>
88 Correct mapping for <**>
89 Correct mapping for <3>
90
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698