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

Unified Diff: pkg/unittest/html_enhanced_config.dart

Issue 11267018: Make getKeys, getValues getters (keys, values). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: pkg/unittest/html_enhanced_config.dart
diff --git a/pkg/unittest/html_enhanced_config.dart b/pkg/unittest/html_enhanced_config.dart
index 00330d895717a7b7ccb9c2761bd6c3e573b4decd..af88f4b009186aebd773eee51c6033bb066e4883 100644
--- a/pkg/unittest/html_enhanced_config.dart
+++ b/pkg/unittest/html_enhanced_config.dart
@@ -153,7 +153,7 @@ class HtmlEnhancedConfiguration extends Configuration {
List<TestCase> flattened = new List<TestCase>();
groupedBy
- .getValues()
+ .values
.forEach((tList){
tList.sort((tcA, tcB) => tcA.id - tcB.id);
flattened.addAll(tList);

Powered by Google App Engine
This is Rietveld 408576698