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

Unified Diff: utils/apidoc/mdn/postProcess.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 with co19 issue number. 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
« no previous file with comments | « utils/apidoc/mdn/extract.dart ('k') | utils/apidoc/mdn/prettyPrint.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/mdn/postProcess.dart
diff --git a/utils/apidoc/mdn/postProcess.dart b/utils/apidoc/mdn/postProcess.dart
index 00507af1c832cdeb7d654f82525b356b2401482c..5be6f2ef96db2f5c32ed0918119d3bc6a51b0e2f 100644
--- a/utils/apidoc/mdn/postProcess.dart
+++ b/utils/apidoc/mdn/postProcess.dart
@@ -16,7 +16,7 @@ void main() {
new File('output/database.json').readAsTextSync());
final filteredDb = {};
final obsolete = [];
- for (String type in database.getKeys()) {
+ for (String type in database.keys) {
final entry = pickBestEntry(database[type], type);
if (entry == null) {
print("Can't find ${type} in database. Skipping.");
@@ -25,7 +25,7 @@ void main() {
filteredDb[type] = entry;
if (entry.containsKey("members")) {
Map members = getMembersMap(entry);
- for (String name in members.getKeys()) {
+ for (String name in members.keys) {
Map memberData = members[name];
if (memberData['obsolete'] == true) {
obsolete.add({'type': type, 'member' : name});
« no previous file with comments | « utils/apidoc/mdn/extract.dart ('k') | utils/apidoc/mdn/prettyPrint.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698