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