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

Side by Side Diff: pkg/front_end/testcases/inference/infer_statics_transitively3.dart.strong.expect

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 unified diff | Download patch
OLDNEW
(Empty)
1 library test;
2 import self as self;
3 import "dart:core" as core;
4 import "./infer_statics_transitively3_a.dart" as inf;
5
6 static const field core::int t1 = 1;
7 static const field core::int t2 = self::t1;
8 static const field core::int t3 = inf::a1;
9 static const field core::int t4 = inf::a2;
10 static const field dynamic t5 = inf::A::a3;
11 static const field dynamic t6 = inf::A::a3;
12 static method foo() → dynamic {
13 core::int i;
14 i = self::t1;
15 i = self::t2;
16 i = self::t3;
17 i = self::t4;
18 }
19 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698