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

Side by Side Diff: tests/language/mixin_superclass_test.dart

Issue 1635763003: Restore old supermixin functionality to shared language tests. Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // SharedOptions=--supermixin
4 5
5 class S0 { } 6 class S0 { }
6 class S1 extends Object { } 7 class S1 extends Object { }
7 class S2 extends S0 { } 8 class S2 extends S0 { }
8 9
9 class M0 { } 10 class M0 { }
10 class M1 extends Object { } 11 class M1 extends Object { }
11 class M2 extends M0 { } 12 class M2 extends M0 { }
12 13
13 class C00 = S0 with M0; 14 class C00 = S0 with M0;
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 113
113 new D20(); 114 new D20();
114 new D21(); 115 new D21();
115 new D22(); 116 new D22();
116 new D23(); 117 new D23();
117 new D24(); 118 new D24();
118 new D25(); 119 new D25();
119 new D26(); 120 new D26();
120 new D27(); 121 new D27();
121 } 122 }
OLDNEW
« tests/language/language.status ('K') | « tests/language/mixin_super_use_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698