OLD | NEW |
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 import "./infer_statics_with_method_invocations_a.dart" as inf; | 4 import "./infer_statics_with_method_invocations_a.dart" as inf; |
5 | 5 |
6 class T extends core::Object { | 6 class T extends core::Object { |
7 static final field self::T foo = self::T::m1(self::T::m2(inf::m3("", ""))); | 7 static final field self::T foo = self::T::m1(self::T::m2(inf::m3("", ""))); |
8 constructor •() → void | 8 default constructor •() → void |
9 : super core::Object::•() | 9 : super core::Object::•() |
10 ; | 10 ; |
11 static method m1(core::String m) → self::T { | 11 static method m1(core::String m) → self::T { |
12 return null; | 12 return null; |
13 } | 13 } |
14 static method m2(dynamic e) → core::String { | 14 static method m2(dynamic e) → core::String { |
15 return ""; | 15 return ""; |
16 } | 16 } |
17 } | 17 } |
18 static method main() → dynamic {} | 18 static method main() → dynamic {} |
OLD | NEW |