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

Side by Side Diff: test/regression/33.stmt

Issue 791113002: Regression test for #45 which is doing pretty much what we want the formatter to do already. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « test/formatter_test.dart ('k') | test/regression/45.stmt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 >>> (indent 4)
2 if (maximumIntegerDigits >
3 1 && maximumIntegerDigits > minimumIntegerDigits) {}
4 <<<
5 if (maximumIntegerDigits > 1 &&
6 maximumIntegerDigits > minimumIntegerDigits) {}
7 >>> (indent 4)
8 while (fractionCodes[fractionLength -
9 1] == _zero && fractionLength > minimumFractionDigits + 1) {}
10 <<<
11 while (fractionCodes[fractionLength - 1] == _zero &&
12 fractionLength > minimumFractionDigits + 1) {}
OLDNEW
« no previous file with comments | « test/formatter_test.dart ('k') | test/regression/45.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698