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

Unified Diff: pkg/front_end/testcases/inference_new/strongly_connected_component.dart

Issue 2942623004: Fuse top level type inference with dependency generation. (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_new/strongly_connected_component.dart
diff --git a/pkg/front_end/testcases/inference_new/strongly_connected_component.dart b/pkg/front_end/testcases/inference_new/strongly_connected_component.dart
new file mode 100644
index 0000000000000000000000000000000000000000..b5f2ef536b9709485ccbdc518bee131df5d6f23a
--- /dev/null
+++ b/pkg/front_end/testcases/inference_new/strongly_connected_component.dart
@@ -0,0 +1,21 @@
+// 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;
+
+bool f() => null;
+
+// Even though x, y, and z form a strongly connected component (each depends on
+// all the others), the circularity is calculated based on the first problematic
+// dependency of each field. So x's first problematic dependency is y, and y's
+// first problematic dependency is x; therefore x and y are considered to have a
+// circularity, and for error recovery their type is set to `dynamic`.
+// Thereafter, z infers without problems.
+
+var /*@topType=dynamic*/ x = /*@returnType=dynamic*/ () => f() ? y : z;
+var /*@topType=dynamic*/ y = /*@returnType=dynamic*/ () => x;
+var /*@topType=() -> dynamic*/ z = /*@returnType=dynamic*/ () => x;
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698