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

Unified Diff: pkg/front_end/testcases/inference/infer_statics_transitively_a.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_statics_transitively_a.dart
diff --git a/pkg/front_end/testcases/inference/infer_statics_transitively_a.dart b/pkg/front_end/testcases/inference/infer_statics_transitively_a.dart
index bf1c447e78cb10c329c72897035d64c0fe7e3f5b..3d09a812eb66c283bfbac242ef60249f418291f2 100644
--- a/pkg/front_end/testcases/inference/infer_statics_transitively_a.dart
+++ b/pkg/front_end/testcases/inference/infer_statics_transitively_a.dart
@@ -7,8 +7,10 @@
import 'infer_statics_transitively.dart';
import 'infer_statics_transitively_b.dart';
-final /*@topType=dynamic*/ a1 = m2;
+final /*@topType=int*/ a1 = m2;
class A {
- static final /*@topType=dynamic*/ a2 = b1;
+ static final /*@topType=int*/ a2 = b1;
}
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698