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

Unified Diff: pkg/front_end/testcases/inference/infer_assign_to_static.dart.strong.expect

Issue 2933643002: Implement type inference for assignments to a static variable. (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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/testcases/inference/infer_assign_to_static.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/infer_assign_to_static.dart.strong.expect b/pkg/front_end/testcases/inference/infer_assign_to_static.dart.strong.expect
new file mode 100644
index 0000000000000000000000000000000000000000..25c6b2e8c85a57ebfd89a223d4f19ca77bb594c4
--- /dev/null
+++ b/pkg/front_end/testcases/inference/infer_assign_to_static.dart.strong.expect
@@ -0,0 +1,64 @@
+library test;
+import self as self;
+import "dart:core" as core;
+
+class A extends core::Object {
+ constructor •() → void
+ : super core::Object::•()
+ ;
+}
+class B extends self::A {
+ static field self::B staticVariable = null;
+ constructor •() → void
+ : super self::A::•()
+ ;
+ operator +(self::C v) → self::A
+ return null;
+ operator -(core::int i) → self::B
+ return null;
+ operator *(self::B v) → self::B
+ return null;
+ operator &(self::A v) → self::C
+ return null;
+}
+class C extends self::B {
+ constructor •() → void
+ : super self::B::•()
+ ;
+}
+static field self::B topLevelVariable;
+static method f<T extends core::Object>() → self::f::T
+ return null;
+static method test_topLevelVariable() → void {
+ self::topLevelVariable = self::f<self::B>();
+ self::topLevelVariable.{core::Object::==}(null) ? self::topLevelVariable = self::f<self::B>() : null;
+ self::topLevelVariable = self::topLevelVariable.{self::B::+}(self::f<dynamic>());
+ self::topLevelVariable = self::topLevelVariable.{self::B::*}(self::f<dynamic>());
+ self::topLevelVariable = self::topLevelVariable.{self::B::&}(self::f<dynamic>());
+ self::topLevelVariable = self::topLevelVariable.{self::B::-}(1);
+ self::topLevelVariable = self::topLevelVariable.{self::B::-}(1);
+ self::B v1 = self::topLevelVariable = self::f<self::B>();
+ self::B v2 = let final dynamic #t1 = self::topLevelVariable in #t1.{core::Object::==}(null) ? self::topLevelVariable = self::f<self::B>() : #t1;
+ self::A v3 = self::topLevelVariable = self::topLevelVariable.{self::B::+}(self::f<dynamic>());
+ self::B v4 = self::topLevelVariable = self::topLevelVariable.{self::B::*}(self::f<dynamic>());
+ self::C v5 = self::topLevelVariable = self::topLevelVariable.{self::B::&}(self::f<dynamic>());
+ self::B v6 = self::topLevelVariable = self::topLevelVariable.{self::B::-}(1);
+ self::B v7 = let final dynamic #t2 = self::topLevelVariable in let final dynamic #t3 = self::topLevelVariable = #t2.{self::B::-}(1) in #t2;
+}
+static method test_staticVariable() → void {
+ self::B::staticVariable = self::f<self::B>();
+ self::B::staticVariable.{core::Object::==}(null) ? self::B::staticVariable = self::f<self::B>() : null;
+ self::B::staticVariable = self::B::staticVariable.{self::B::+}(self::f<dynamic>());
+ self::B::staticVariable = self::B::staticVariable.{self::B::*}(self::f<dynamic>());
+ self::B::staticVariable = self::B::staticVariable.{self::B::&}(self::f<dynamic>());
+ self::B::staticVariable = self::B::staticVariable.{self::B::-}(1);
+ self::B::staticVariable = self::B::staticVariable.{self::B::-}(1);
+ self::B v1 = self::B::staticVariable = self::f<self::B>();
+ self::B v2 = let final dynamic #t4 = self::B::staticVariable in #t4.{core::Object::==}(null) ? self::B::staticVariable = self::f<self::B>() : #t4;
+ self::A v3 = self::B::staticVariable = self::B::staticVariable.{self::B::+}(self::f<dynamic>());
+ self::B v4 = self::B::staticVariable = self::B::staticVariable.{self::B::*}(self::f<dynamic>());
+ self::C v5 = self::B::staticVariable = self::B::staticVariable.{self::B::&}(self::f<dynamic>());
+ self::B v6 = self::B::staticVariable = self::B::staticVariable.{self::B::-}(1);
+ self::B v7 = let final dynamic #t5 = self::B::staticVariable in let final dynamic #t6 = self::B::staticVariable = #t5.{self::B::-}(1) in #t5;
+}
+static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698