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

Side by Side Diff: pkg/front_end/testcases/type_variable_as_super.dart.dartk.expect

Issue 2825063002: Move kernel baseline tests to front_end. (Closed)
Patch Set: Created 3 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
OLDNEW
1 library; 1 library;
2 import self as self; 2 import self as self;
3 import "dart:core" as core; 3 import "dart:core" as core;
4 4
5 abstract class A<T extends core::Object> extends core::Object { 5 abstract class A<T extends core::Object> extends core::Object {
6 constructor •() → void 6 constructor •() → void
7 : super core::Object::•() 7 : super core::Object::•()
8 ; 8 ;
9 } 9 }
10 abstract class B<T extends core::Object> extends core::Object { 10 abstract class B<T extends core::Object> extends core::Object {
11 constructor •() → void 11 constructor •() → void
12 : super core::Object::•() 12 : super core::Object::•()
13 ; 13 ;
14 } 14 }
15 class C<T extends core::Object> extends core::Object { 15 class C<T extends core::Object> extends core::Object {
16 constructor •() → void 16 constructor •() → void
17 : super core::Object::•() 17 : super core::Object::•()
18 ; 18 ;
19 } 19 }
20 static method main() → dynamic { 20 static method main() → dynamic {
21 throw new core::NoSuchMethodError::•(null, #A, <dynamic>[], <dynamic, dynamic> {}, null); 21 throw new core::NoSuchMethodError::•(null, #A, <dynamic>[], <dynamic, dynamic> {}, null);
22 throw new core::NoSuchMethodError::•(null, #B, <dynamic>[], <dynamic, dynamic> {}, null); 22 throw new core::NoSuchMethodError::•(null, #B, <dynamic>[], <dynamic, dynamic> {}, null);
23 new self::C::•<dynamic>(); 23 new self::C::•<dynamic>();
24 } 24 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/type_variable_as_super.dart ('k') | pkg/front_end/testcases/type_variable_as_super.dart.direct.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698