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

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

Issue 2928033005: Add type inference for assignment to local variables. (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
(Empty)
1 library test;
2 import self as self;
3 import "dart:core" as core;
4
5 class A extends core::Object {
6 constructor •() → void
7 : super core::Object::•()
8 ;
9 }
10 class B extends self::A {
11 constructor •() → void
12 : super self::A::•()
13 ;
14 operator +(self::C v) → self::A
15 return null;
16 operator -(core::int i) → self::B
17 return null;
18 operator *(self::B v) → self::B
19 return null;
20 operator &(self::A v) → self::C
21 return null;
22 }
23 class C extends self::B {
24 constructor •() → void
25 : super self::B::•()
26 ;
27 }
28 static method f<T extends core::Object>() → self::f::T
29 return null;
30 static method test() → void {
31 self::B local;
32 local = self::f<self::B>();
33 local.{core::Object::==}(null) ? local = self::f<self::B>() : null;
34 local = local.{self::B::+}(self::f<dynamic>());
35 local = local.{self::B::*}(self::f<dynamic>());
36 local = local.{self::B::&}(self::f<dynamic>());
37 local = local.{self::B::-}(1);
38 local = local.{self::B::-}(1);
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;
41 self::A v3 = 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>());
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;
46 }
47 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698