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

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

Issue 2017723002: DevTools: pretty-print javascript class expression (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 Verifies JavaScript pretty-printing functionality. 1 Verifies JavaScript pretty-printing functionality.
2 2
3 3
4 Running: emptyClass 4 Running: emptyClass
5 ====== 8< ------ 5 ====== 8< ------
6 class Test { 6 class Test {
7 } 7 }
8 8
9 ------ >8 ====== 9 ------ >8 ======
10 Correct mapping for <Test> 10 Correct mapping for <Test>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 return this._counter; 79 return this._counter;
80 } 80 }
81 } 81 }
82 82
83 ------ >8 ====== 83 ------ >8 ======
84 Correct mapping for <Employer> 84 Correct mapping for <Employer>
85 Correct mapping for <static> 85 Correct mapping for <static>
86 Correct mapping for <1> 86 Correct mapping for <1>
87 Correct mapping for <return> 87 Correct mapping for <return>
88 88
89 Running: classExpression
90 ====== 8< ------
91 new (class {
92 constructor() {
93 debugger
94 }
95 }
dgozman 2016/05/26 20:47:51 Kind of strange formatting here...
lushnikov 2016/05/26 21:03:22 Yep, but that's a very rare case - don't want to i
96 )
97
98 ------ >8 ======
99 Correct mapping for <new>
100 Correct mapping for <class>
101 Correct mapping for <constructor>
102 Correct mapping for <debugger>
103
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698