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

Side by Side Diff: test/regression/176.unit

Issue 944923003: Add regression test. Fix #176. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | no next file » | 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 Iterable<Task> generate() sync* {
3 int i = 0;
4
5 while (i++ < 100) {
6 yield new Task(i, rnd.nextInt(100), calc);
7 }
8 }
9 <<<
10 Iterable<Task> generate() sync* {
11 int i = 0;
12
13 while (i++ < 100) {
14 yield new Task(i, rnd.nextInt(100), calc);
15 }
16 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698