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

Side by Side Diff: pkg/front_end/testcases/inference/infer_assign_to_index_super_upwards.dart.outline.expect

Issue 2941813002: Fix fasta testcase to avoid a super call to an abstract method. (Closed)
Patch Set: Created 3 years, 6 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 test; 1 library test;
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 Base<T extends core::Object, U extends core::Object> extends core ::Object { 5 abstract class Base<T extends core::Object, U extends core::Object> extends core ::Object {
6 constructor •() → void 6 constructor •() → void
7 ; 7 ;
8 abstract operator [](core::String s) → self::Base::T; 8 operator [](core::String s) → self::Base::T
9 abstract operator []=(core::String s, self::Base::U v) → void; 9 ;
10 operator []=(core::String s, self::Base::U v) → void
11 ;
12 abstract method getValue(core::String s) → self::Base::T;
13 abstract method setValue(core::String s, self::Base::U v) → void;
10 } 14 }
11 abstract class Test1 extends self::Base<core::int, core::int> { 15 abstract class Test1 extends self::Base<core::int, core::int> {
12 constructor •() → void 16 constructor •() → void
13 ; 17 ;
14 method test() → void 18 method test() → void
15 ; 19 ;
16 } 20 }
17 abstract class Test2 extends self::Base<core::int, core::num> { 21 abstract class Test2 extends self::Base<core::int, core::num> {
18 constructor •() → void 22 constructor •() → void
19 ; 23 ;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 ; 67 ;
64 } 68 }
65 static method getInt() → core::int 69 static method getInt() → core::int
66 ; 70 ;
67 static method getNum() → core::num 71 static method getNum() → core::num
68 ; 72 ;
69 static method getDouble() → core::double 73 static method getDouble() → core::double
70 ; 74 ;
71 static method main() → dynamic 75 static method main() → dynamic
72 ; 76 ;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698