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

Side by Side Diff: pkg/front_end/testcases/inference/infer_assign_to_local.dart.strong.expect

Issue 2949753002: Print static types of conditional expressions. (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 class A extends core::Object { 5 class A extends core::Object {
6 constructor •() → void 6 constructor •() → void
7 : super core::Object::•() 7 : super core::Object::•()
8 ; 8 ;
9 } 9 }
10 class B extends self::A { 10 class B extends self::A {
(...skipping 12 matching lines...) Expand all
23 class C extends self::B { 23 class C extends self::B {
24 constructor •() → void 24 constructor •() → void
25 : super self::B::•() 25 : super self::B::•()
26 ; 26 ;
27 } 27 }
28 static method f<T extends core::Object>() → self::f::T 28 static method f<T extends core::Object>() → self::f::T
29 return null; 29 return null;
30 static method test() → void { 30 static method test() → void {
31 self::B local; 31 self::B local;
32 local = self::f<self::B>(); 32 local = self::f<self::B>();
33 local.{core::Object::==}(null) ? local = self::f<self::B>() : null; 33 local.{core::Object::==}(null) ?{dynamic} local = self::f<self::B>() : null;
34 local = local.{self::B::+}(self::f<dynamic>()); 34 local = local.{self::B::+}(self::f<dynamic>());
35 local = local.{self::B::*}(self::f<dynamic>()); 35 local = local.{self::B::*}(self::f<dynamic>());
36 local = local.{self::B::&}(self::f<dynamic>()); 36 local = local.{self::B::&}(self::f<dynamic>());
37 local = local.{self::B::-}(1); 37 local = local.{self::B::-}(1);
38 local = local.{self::B::-}(1); 38 local = local.{self::B::-}(1);
39 self::B v1 = local = self::f<self::B>(); 39 self::B v1 = local = self::f<self::B>();
40 self::B v2 = let final dynamic #t1 = local in #t1.{core::Object::==}(null) ? l ocal = self::f<self::B>() : #t1; 40 self::B v2 = let final dynamic #t1 = local in #t1.{core::Object::==}(null) ?{d ynamic} local = self::f<self::B>() : #t1;
41 self::A v3 = local = local.{self::B::+}(self::f<dynamic>()); 41 self::A v3 = local = local.{self::B::+}(self::f<dynamic>());
42 self::B v4 = local = local.{self::B::*}(self::f<dynamic>()); 42 self::B v4 = local = local.{self::B::*}(self::f<dynamic>());
43 self::C v5 = local = local.{self::B::&}(self::f<dynamic>()); 43 self::C v5 = local = local.{self::B::&}(self::f<dynamic>());
44 self::B v6 = local = local.{self::B::-}(1); 44 self::B v6 = local = local.{self::B::-}(1);
45 self::B v7 = let final dynamic #t2 = local in let final dynamic #t3 = local = #t2.{self::B::-}(1) in #t2; 45 self::B v7 = let final dynamic #t2 = local in let final dynamic #t3 = local = #t2.{self::B::-}(1) in #t2;
46 } 46 }
47 static method main() → dynamic {} 47 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698