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

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

Issue 2931363003: Add type inference for assignments to properties. (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 class Test extends core::Object {
29 field self::B member = null;
30 constructor •() → void
31 : super core::Object::•()
32 ;
33 static method test(self::Test t) → void {
34 let final dynamic #t1 = t in #t1.==(null) ? null : #t1.{self::Test::member} = self::f<self::B>();
35 let final dynamic #t2 = t in #t2.==(null) ? null : #t2.{self::Test::member}. {core::Object::==}(null) ? #t2.{self::Test::member} = self::f<self::B>() : null;
36 let final dynamic #t3 = t in #t3.==(null) ? null : #t3.{self::Test::member} = #t3.{self::Test::member}.{self::B::+}(self::f<dynamic>());
37 let final dynamic #t4 = t in #t4.==(null) ? null : #t4.{self::Test::member} = #t4.{self::Test::member}.{self::B::*}(self::f<dynamic>());
38 let final dynamic #t5 = t in #t5.==(null) ? null : #t5.{self::Test::member} = #t5.{self::Test::member}.{self::B::&}(self::f<dynamic>());
39 let final dynamic #t6 = t in #t6.==(null) ? null : #t6.{self::Test::member} = #t6.{self::Test::member}.{self::B::-}(1);
40 let final dynamic #t7 = t in #t7.==(null) ? null : #t7.{self::Test::member} = #t7.{self::Test::member}.{self::B::-}(1);
41 self::B v1 = let final dynamic #t8 = t in #t8.==(null) ? null : #t8.{self::T est::member} = self::f<self::B>();
42 self::B v2 = let final dynamic #t9 = t in #t9.==(null) ? null : let final dy namic #t10 = #t9.{self::Test::member} in #t10.{core::Object::==}(null) ? #t9.{se lf::Test::member} = self::f<self::B>() : #t10;
43 self::A v3 = let final dynamic #t11 = t in #t11.==(null) ? null : #t11.{self ::Test::member} = #t11.{self::Test::member}.{self::B::+}(self::f<dynamic>());
44 self::B v4 = let final dynamic #t12 = t in #t12.==(null) ? null : #t12.{self ::Test::member} = #t12.{self::Test::member}.{self::B::*}(self::f<dynamic>());
45 self::C v5 = let final dynamic #t13 = t in #t13.==(null) ? null : #t13.{self ::Test::member} = #t13.{self::Test::member}.{self::B::&}(self::f<dynamic>());
46 self::B v6 = let final dynamic #t14 = t in #t14.==(null) ? null : #t14.{self ::Test::member} = #t14.{self::Test::member}.{self::B::-}(1);
47 self::B v7 = let final dynamic #t15 = t in #t15.==(null) ? null : let final dynamic #t16 = #t15.{self::Test::member} in let final dynamic #t17 = #t15.{self: :Test::member} = #t16.{self::B::-}(1) in #t16;
48 }
49 }
50 static method f<T extends core::Object>() → self::f::T
51 return null;
52 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698