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

Side by Side Diff: pkg/analyzer/test/services/data/cu_tests.data

Issue 125103003: Formatter workaround for missing abstract keyword in ClassTypeAliases (dartbug.com/15912). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « pkg/analyzer/lib/src/services/formatter_impl.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 >>> 1 >>>
2 class 2 class
3 A 3 A
4 { 4 {
5 } 5 }
6 <<< 6 <<<
7 class A { 7 class A {
8 } 8 }
9 >>> dartbug.com/15876 9 >>> dartbug.com/15876
10 // fisk 10 // fisk
11 import "dart:typed_data"; 11 import "dart:typed_data";
12 12
13 main() { 13 main() {
14 ByteData byteData = new ByteData(1); 14 ByteData byteData = new ByteData(1);
15 print(byteData is ByteData); 15 print(byteData is ByteData);
16 print(byteData.elementSizeInBytes); 16 print(byteData.elementSizeInBytes);
17 } 17 }
18 <<< 18 <<<
19 // fisk 19 // fisk
20 import "dart:typed_data"; 20 import "dart:typed_data";
21 21
22 main() { 22 main() {
23 ByteData byteData = new ByteData(1); 23 ByteData byteData = new ByteData(1);
24 print(byteData is ByteData); 24 print(byteData is ByteData);
25 print(byteData.elementSizeInBytes); 25 print(byteData.elementSizeInBytes);
26 } 26 }
27 >>>
28 /**
29 * Y.
30 */
31 abstract class Y = String;
32 <<<
33 /**
34 * Y.
35 */
36 abstract class Y = String;
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/services/formatter_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698