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

Unified Diff: pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.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_non_cycle_imports_with_flag2.dart
diff --git a/pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart b/pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart
index 5e0cd94c2a2197410ef1cc37e11c9a395feb73f8..bdf047fba837747c87a74d40dd1a894f16c1a52a 100644
--- a/pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart
+++ b/pkg/front_end/testcases/inference/infer_from_variables_in_non_cycle_imports_with_flag2.dart
@@ -8,10 +8,12 @@ library test;
import 'infer_from_variables_in_non_cycle_imports_with_flag2_a.dart';
class B {
- static var /*@topType=dynamic*/ y = A.x;
+ static var /*@topType=int*/ y = A.x;
}
test1() {
A.x = /*error:INVALID_ASSIGNMENT*/ "hi";
B.y = /*error:INVALID_ASSIGNMENT*/ "hi";
}
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698