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

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

Issue 225863005: Annotation whitespace convention fixes (dartbug.com/17837). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 class Foo extends Bar { 239 class Foo extends Bar {
240 final int b; 240 final int b;
241 Foo(int a, int b) : super(a), this.b = b == null ? 0 : b; 241 Foo(int a, int b) : super(a), this.b = b == null ? 0 : b;
242 } 242 }
243 <<< 243 <<<
244 class Foo extends Bar { 244 class Foo extends Bar {
245 final int b; 245 final int b;
246 Foo(int a, int b) 246 Foo(int a, int b)
247 : super(a), 247 : super(a),
248 this.b = b == null ? 0 : b; 248 this.b = b == null ? 0 : b;
249 }
250 >>> dartbug.com/17837
251 @meta class Foo {
252 @meta String foo;
253 @meta int bar() => 42;
254 }
255 @meta
256 class Bar {
257 @meta
258 String foo;
259 @meta
260 int bar() => 42;
261 }
262 <<<
263 @meta class Foo {
264 @meta String foo;
265 @meta int bar() => 42;
266 }
267 @meta
268 class Bar {
269 @meta
270 String foo;
271 @meta
272 int bar() => 42;
249 } 273 }
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