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

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

Issue 125253005: Formatter support for metadata. (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
(...skipping 29 matching lines...) Expand all
40 external void printToConsole(String line); 40 external void printToConsole(String line);
41 >>> 41 >>>
42 void set foo(int bar) { 42 void set foo(int bar) {
43 } 43 }
44 44
45 int get baz => null; 45 int get baz => null;
46 <<< 46 <<<
47 void set foo(int bar) { 47 void set foo(int bar) {
48 } 48 }
49 49
50 int get baz => null; 50 int get baz => null;
51 >>>
52 @deprecated
53 library foo;
54
55 @deprecated
56 import 'dart:io';
57
58 @deprecated
59 export 'dart:io';
60
61 class NoInline {
62 const NoInline();
63 }
64
65 @NoInline()
66 int foo(@NoInline() bar) => bar + 42;
67
68 class Z<@NoInline() Y> {
69
70 }
71
72 @NoInline()
73 class Y = X;
74
75 @NoInline()
76 class X {
77
78 @NoInline()
79 var _x;
80
81 @NoInline()
82 X.y() {
83 @NoInline()
84 const y = null;
85 }
86
87 @NoInline()
88 factory X(@NoInline() x) => null;
89
90 @NoInline()
91 int x() => null;
92 }
93 <<<
94 @deprecated
95 library foo;
96
97 @deprecated
98 import 'dart:io';
99
100 @deprecated
101 export 'dart:io';
102
103 class NoInline {
104 const NoInline();
105 }
106
107 @NoInline()
108 int foo(@NoInline() bar) => bar + 42;
109
110 class Z<@NoInline() Y> {
111
112 }
113
114 @NoInline()
115 class Y = X;
116
117 @NoInline()
118 class X {
119
120 @NoInline()
121 var _x;
122
123 @NoInline()
124 X.y() {
125 @NoInline()
126 const y = null;
127 }
128
129 @NoInline()
130 factory X(@NoInline() x) => null;
131
132 @NoInline()
133 int x() => null;
134 }
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