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

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

Issue 254133006: Test fixes to catch up with Parser changes (dartbug.com/18315). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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 | « no previous file | pkg/analyzer/test/services/formatter_test.dart » ('j') | 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 10 matching lines...) Expand all
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 >>> 27 >>>
28 /** 28 /**
29 * Y. 29 * Y.
30 */ 30 */
31 abstract class Y = String; 31 abstract class Y = Foo with Bar;
32 <<< 32 <<<
33 /** 33 /**
34 * Y. 34 * Y.
35 */ 35 */
36 abstract class Y = String; 36 abstract class Y = Foo with Bar;
37 >>> 37 >>>
38 external void printToConsole(String line); 38 external void printToConsole(String line);
39 <<< 39 <<<
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 <<<
(...skipping 19 matching lines...) Expand all
66 int foo(@NoInline() bar) => bar + 42; 66 int foo(@NoInline() bar) => bar + 42;
67 67
68 class Z<@NoInline() Y> { 68 class Z<@NoInline() Y> {
69 69
70 } 70 }
71 71
72 @NoInline() 72 @NoInline()
73 typedef void X(y); 73 typedef void X(y);
74 74
75 @NoInline() 75 @NoInline()
76 class Y = X; 76 class Y = X with Z;
77 77
78 @NoInline() 78 @NoInline()
79 class X { 79 class X {
80 80
81 @NoInline() 81 @NoInline()
82 var _x; 82 var _x;
83 83
84 @NoInline() 84 @NoInline()
85 X.y() { 85 X.y() {
86 @NoInline() 86 @NoInline()
(...skipping 24 matching lines...) Expand all
111 int foo(@NoInline() bar) => bar + 42; 111 int foo(@NoInline() bar) => bar + 42;
112 112
113 class Z<@NoInline() Y> { 113 class Z<@NoInline() Y> {
114 114
115 } 115 }
116 116
117 @NoInline() 117 @NoInline()
118 typedef void X(y); 118 typedef void X(y);
119 119
120 @NoInline() 120 @NoInline()
121 class Y = X; 121 class Y = X with Z;
122 122
123 @NoInline() 123 @NoInline()
124 class X { 124 class X {
125 125
126 @NoInline() 126 @NoInline()
127 var _x; 127 var _x;
128 128
129 @NoInline() 129 @NoInline()
130 X.y() { 130 X.y() {
131 @NoInline() 131 @NoInline()
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 @meta String foo; 264 @meta String foo;
265 @meta int bar() => 42; 265 @meta int bar() => 42;
266 } 266 }
267 @meta 267 @meta
268 class Bar { 268 class Bar {
269 @meta 269 @meta
270 String foo; 270 String foo;
271 @meta 271 @meta
272 int bar() => 42; 272 int bar() => 42;
273 } 273 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/test/services/formatter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698