Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
stringliteral.dart.textual_outline.expect
blob: 203a8096d9d2a223e86bb48df54385eb52a6ceeb [
file
] [
log
] [
blame
]
var
color
=
'brown'
;
var
thing
=
'lazy dog'
;
var
phrase
=
"The quick $color fox\njumped over the $thing.\n"
;
var
adjacent
=
'$color$color$color'
;
var
linebreaks
=
'$color\n$color\n$color'
;
var
other
=
'$color\n is \n$color'
;
main
()
{}