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

Side by Side Diff: pkg/front_end/testcases/inference/string_literal.dart.direct.expect

Issue 2855403002: Type inference for StringConcatenation. (Closed)
Patch Set: Fixes for review comments. Created 3 years, 7 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
4 static field dynamic x = 1;
5 static field dynamic a = "aaa";
6 static field dynamic b = "b ${self::x} bb";
7 static field dynamic c = "c ${self::x} ccccc";
8 static method main() → dynamic {
9 dynamic x = 1;
10 dynamic a = "aaa";
11 dynamic b = "b ${x} bb";
12 dynamic c = "c ${x} ccccc";
13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698