d359ce8650
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>
17 lines
468 B
Plaintext
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 {}
|