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

Side by Side Diff: pkg/front_end/test/fasta/type_variable_as_super.dart.direct.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
(Empty)
1 library;
2 import self as self;
3 import "dart:core" as core;
4
5 abstract class A<T extends core::Object> extends core::Object {
6 constructor •() → void
7 : super core::Object::•()
8 ;
9 }
10 abstract class B<T extends core::Object> extends core::Object {
11 constructor •() → void
12 : super core::Object::•()
13 ;
14 }
15 class C<T extends core::Object> extends core::Object {
16 constructor •() → void
17 : super core::Object::•()
18 ;
19 }
20 static method main() → dynamic {
21 throw new core::NoSuchMethodError::•(null, #A, <dynamic>[], <dynamic, dynamic> {}, null);
22 throw new core::NoSuchMethodError::•(null, #B, <dynamic>[], <dynamic, dynamic> {}, null);
23 new self::C::•<dynamic>();
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698