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

Unified Diff: pkg/front_end/testcases/inference/infer_assign_to_local_upwards.dart.direct.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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/testcases/inference/infer_assign_to_local_upwards.dart.direct.expect
diff --git a/pkg/front_end/testcases/inference/infer_assign_to_local_upwards.dart.direct.expect b/pkg/front_end/testcases/inference/infer_assign_to_local_upwards.dart.direct.expect
new file mode 100644
index 0000000000000000000000000000000000000000..4b844cbd6b7a65b711d9c658ea38365d9ea171c2
--- /dev/null
+++ b/pkg/front_end/testcases/inference/infer_assign_to_local_upwards.dart.direct.expect
@@ -0,0 +1,45 @@
+library test;
+import self as self;
+import "dart:core" as core;
+
+static method getInt() → core::int
+ return 0;
+static method getNum() → core::num
+ return 0;
+static method getDouble() → core::double
+ return 0.0;
+static method test1(core::int t) → void {
+ dynamic v1 = t = self::getInt();
+ dynamic v2 = t = self::getNum();
+ dynamic v4 = let final dynamic #t1 = t in #t1.==(null) ? t = self::getInt() : #t1;
+ dynamic v5 = let final dynamic #t2 = t in #t2.==(null) ? t = self::getNum() : #t2;
+ dynamic v7 = t = t.+(self::getInt());
+ dynamic v8 = t = t.+(self::getNum());
+ dynamic v10 = t = t.+(1);
+ dynamic v11 = let final dynamic #t3 = t in let final dynamic #t4 = t = #t3.+(1) in #t3;
+}
+static method test2(core::num t) → void {
+ dynamic v1 = t = self::getInt();
+ dynamic v2 = t = self::getNum();
+ dynamic v3 = t = self::getDouble();
+ dynamic v4 = let final dynamic #t5 = t in #t5.==(null) ? t = self::getInt() : #t5;
+ dynamic v5 = let final dynamic #t6 = t in #t6.==(null) ? t = self::getNum() : #t6;
+ dynamic v6 = let final dynamic #t7 = t in #t7.==(null) ? t = self::getDouble() : #t7;
+ dynamic v7 = t = t.+(self::getInt());
+ dynamic v8 = t = t.+(self::getNum());
+ dynamic v9 = t = t.+(self::getDouble());
+ dynamic v10 = t = t.+(1);
+ dynamic v11 = let final dynamic #t8 = t in let final dynamic #t9 = t = #t8.+(1) in #t8;
+}
+static method test3(core::double t) → void {
+ dynamic v2 = t = self::getNum();
+ dynamic v3 = t = self::getDouble();
+ dynamic v5 = let final dynamic #t10 = t in #t10.==(null) ? t = self::getNum() : #t10;
+ dynamic v6 = let final dynamic #t11 = t in #t11.==(null) ? t = self::getDouble() : #t11;
+ dynamic v7 = t = t.+(self::getInt());
+ dynamic v8 = t = t.+(self::getNum());
+ dynamic v9 = t = t.+(self::getDouble());
+ dynamic v10 = t = t.+(1);
+ dynamic v11 = let final dynamic #t12 = t in let final dynamic #t13 = t = #t12.+(1) in #t12;
+}
+static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698