Files
sdk/pkg/front_end/testcases/stringliteral.dart.direct.expect
T
Peter von der Ahé d359ce8650 Replace \n in expectation files with newline
Change-Id: Ia8444f7b817ac8e298c4f212f7aaa4fc6ba026b7
Reviewed-on: https://dart-review.googlesource.com/42682
Commit-Queue: Peter von der Ahé <ahe@google.com>
Reviewed-by: Aske Simon Christensen <askesc@google.com>
2018-02-21 17:02:07 +00:00

17 lines
468 B
Plaintext

library;
import self as self;
static field dynamic color = "brown";
static field dynamic thing = "lazy dog";
static field dynamic phrase = "The quick ${self::color} fox
jumped over the ${self::thing}.
";
static field dynamic adjacent = "${self::color}${self::color}${self::color}";
static field dynamic linebreaks = "${self::color}
${self::color}
${self::color}";
static field dynamic other = "${self::color}
is
${self::color}";
static method main() → dynamic {}