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

Unified Diff: pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on.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_on.dart
diff --git a/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on.dart b/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on.dart
index 7d5f8010dc8c27f77581d486e8f27bc44e67d236..f2357b38a2deee4a117831cd40c314488274c115 100644
--- a/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on.dart
+++ b/pkg/front_end/testcases/inference/infer_from_variables_in_cycle_libs_when_flag_is_on.dart
@@ -7,10 +7,12 @@ library test;
import 'infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart';
-var /*@topType=dynamic*/ y = x; // now ok :)
+var /*@topType=int*/ y = x; // now ok :)
test1() {
int t = 3;
t = x;
t = y;
}
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698