Chromium Code Reviews| Index: testcases/input/stringliteral.dart |
| diff --git a/testcases/input/stringliteral.dart b/testcases/input/stringliteral.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9fc3ac5e9edc421d3694511c3544c76643d4faa1 |
| --- /dev/null |
| +++ b/testcases/input/stringliteral.dart |
| @@ -0,0 +1,8 @@ |
| +var color = 'brown'; |
|
ahe
2016/11/11 10:53:07
No copyright.
asgerf
2016/11/11 11:00:14
Done.
|
| +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() {} |