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

Side by Side Diff: packages/dart_style/test/regression/0000/0087.unit

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 >>>
2 void main() {
3 List<List> containsPointMatches = [
4 [0, 0, isFalse],
5 [1, 0, isFalse],
6 [2, 0, isFalse],
7 [3, 0, isFalse],
8 [0, 1, isFalse],
9 [1, 1, isTrue],
10 [2, 1, isTrue],
11 [3, 1, isFalse],
12 [0, 2, isFalse],
13 [1, 2, isTrue],
14 [2, 2, isTrue],
15 [3, 2, isFalse],
16 [0, 3, isFalse],
17 [1, 3, isFalse],
18 [2, 3, isFalse],
19 [3, 3, isFalse]
20 ];
21 }
22 <<<
23 void main() {
24 List<List> containsPointMatches = [
25 [0, 0, isFalse],
26 [1, 0, isFalse],
27 [2, 0, isFalse],
28 [3, 0, isFalse],
29 [0, 1, isFalse],
30 [1, 1, isTrue],
31 [2, 1, isTrue],
32 [3, 1, isFalse],
33 [0, 2, isFalse],
34 [1, 2, isTrue],
35 [2, 2, isTrue],
36 [3, 2, isFalse],
37 [0, 3, isFalse],
38 [1, 3, isFalse],
39 [2, 3, isFalse],
40 [3, 3, isFalse]
41 ];
42 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0000/0086.unit ('k') | packages/dart_style/test/regression/0000/0089.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698