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

Unified Diff: pkg/front_end/testcases/inference/infer_assign_to_local.dart

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.dart
diff --git a/pkg/front_end/testcases/inference/infer_assign_to_local.dart b/pkg/front_end/testcases/inference/infer_assign_to_local.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c482b93c87d4a2d911c3710a6051597939e4f120
--- /dev/null
+++ b/pkg/front_end/testcases/inference/infer_assign_to_local.dart
@@ -0,0 +1,39 @@
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/*@testedFeatures=inference*/
+library test;
+
+class A {}
+
+class B extends A {
+ A operator +(C v) => null;
+ B operator -(int i) => null;
+ B operator *(B v) => null;
+ C operator &(A v) => null;
+}
+
+class C extends B {}
+
+T f<T>() => null;
+
+void test() {
+ B local;
+ local = /*@typeArgs=B*/ f();
+ local ??= /*@typeArgs=B*/ f();
+ local += /*@typeArgs=dynamic*/ f();
+ local *= /*@typeArgs=dynamic*/ f();
+ local &= /*@typeArgs=dynamic*/ f();
+ --local;
+ local--;
+ var /*@type=B*/ v1 = local = /*@typeArgs=B*/ f();
+ var /*@type=B*/ v2 = local ??= /*@typeArgs=B*/ f();
+ var /*@type=A*/ v3 = local += /*@typeArgs=dynamic*/ f();
+ var /*@type=B*/ v4 = local *= /*@typeArgs=dynamic*/ f();
+ var /*@type=C*/ v5 = local &= /*@typeArgs=dynamic*/ f();
+ var /*@type=B*/ v6 = --local;
+ var /*@type=B*/ v7 = local--;
+}
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698