Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: packages/dart_style/test/splitting/statements.stmt

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 40 columns |
2 >>> single-line assert
3 assert("some short string");
4 <<<
5 assert("some short string");
6 >>> wrapped assert
7 assert("some very long string that wraps");
8 <<<
9 assert(
10 "some very long string that wraps");
11 >>> split in do-while condition
12 do {} while ("some long string that wraps");
13 <<<
14 do {} while (
15 "some long string that wraps");
16 >>> split in switch value
17 switch ("a long string that must wrap") {
18 case 0:
19 return "ok";
20 }
21 <<<
22 switch (
23 "a long string that must wrap") {
24 case 0:
25 return "ok";
26 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/splitting/parameters.unit ('k') | packages/dart_style/test/splitting/strings.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698