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

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

Issue 815423003: Don't put spaces in empty for loop clauses. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « lib/src/source_visitor.dart ('k') | test/whitespace/for.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 >>>
2 for (; i < words.length; i++) {
3 buffer.write(' ');
4 buffer.write(words[i]);
5 }
6 <<<
7 for (; i < words.length; i++) {
8 buffer.write(' ');
9 buffer.write(words[i]);
10 }
OLDNEW
« no previous file with comments | « lib/src/source_visitor.dart ('k') | test/whitespace/for.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698