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

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

Issue 2936043002: Chase imports in analyzer's front_end_inference_test. (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_from_variables_in_cycle_libs_when_flag_is_on2.dart
diff --git a/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on2.dart b/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on2.dart
index 90922cdacd4f4f6099417f1b89a1bf8d5bbb88be..6b746f5dee09661cc3017b68fdf1587aaa4c4337 100644
--- a/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on2.dart
+++ b/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on2.dart
@@ -8,7 +8,7 @@ library test;
import 'infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart';
class B {
- static var /*@topType=dynamic*/ y = A.x;
+ static var /*@topType=int*/ y = A.x;
}
test1() {
@@ -16,3 +16,5 @@ test1() {
t = A.x;
t = B.y;
}
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698