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

Side by Side Diff: samples/third_party/dromaeo/Suites.dart

Issue 11364134: Merge libv1. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 #library('Suites.dart'); 1 library Suites;
2 2
3 class Origin { 3 class Origin {
4 final String author; 4 final String author;
5 final String url; 5 final String url;
6 6
7 const Origin(this.author, this.url); 7 const Origin(this.author, this.url);
8 } 8 }
9 9
10 class SuiteDescription { 10 class SuiteDescription {
11 final String file; 11 final String file;
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 return CATEGORIES[tags]; 158 return CATEGORIES[tags];
159 } 159 }
160 for (final suite in _CORE_SUITE_DESCRIPTIONS) { 160 for (final suite in _CORE_SUITE_DESCRIPTIONS) {
161 if (suite.tags[0] == tags) { 161 if (suite.tags[0] == tags) {
162 return suite.name; 162 return suite.name;
163 } 163 }
164 } 164 }
165 return null; 165 return null;
166 } 166 }
167 } 167 }
OLDNEW
« no previous file with comments | « samples/third_party/dromaeo/Dromaeo.dart ('k') | samples/third_party/dromaeo/common/common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698