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

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

Issue 102763007: Function Decl formatter fixes (external and getters/setters) --- (dartbug.com/15914). (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 15 matching lines...) Expand all
26 } 26 }
27 >>> 27 >>>
28 /** 28 /**
29 * Y. 29 * Y.
30 */ 30 */
31 abstract class Y = String; 31 abstract class Y = String;
32 <<< 32 <<<
33 /** 33 /**
34 * Y. 34 * Y.
35 */ 35 */
36 abstract class Y = String; 36 abstract class Y = String;
37 >>>
38 external void printToConsole(String line);
39 <<<
40 external void printToConsole(String line);
41 >>>
42 void set foo(int bar) {
43 }
44
45 int get baz => null;
46 <<<
47 void set foo(int bar) {
48 }
49
50 int get baz => null;
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