Files
sdk/pkg/front_end/testcases/stringliteral.dart.strong.expect
T
Peter von der Ahé 874710bdf3 Add missing expectation files
Change-Id: I5c87f431bae49471908a96fbbfe8b1f4d3098c6b
Reviewed-on: https://dart-review.googlesource.com/c/81822
Commit-Queue: Peter von der Ahé <ahe@google.com>
Auto-Submit: Peter von der Ahé <ahe@google.com>
Reviewed-by: Jens Johansen <jensj@google.com>
2018-10-29 13:58:59 +00:00

18 lines
526 B
Plaintext

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