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

Unified Diff: pkg/yaml/lib/model.dart

Issue 12086062: Rename mappedBy to map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Undo change to test-script. Created 7 years, 11 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 | « pkg/unittest/lib/src/config.dart ('k') | pkg/yaml/lib/visitor.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/yaml/lib/model.dart
diff --git a/pkg/yaml/lib/model.dart b/pkg/yaml/lib/model.dart
index 8c111afe3d2b49bcf482c49a12858163792d9c80..7a609b9e204eafaca7899e22afb921338407a04c 100644
--- a/pkg/yaml/lib/model.dart
+++ b/pkg/yaml/lib/model.dart
@@ -91,7 +91,7 @@ class _SequenceNode extends _Node {
}
String toString() =>
- '$tag [${Strings.join(content.mappedBy((e) => '$e'), ', ')}]';
+ '$tag [${Strings.join(content.map((e) => '$e'), ', ')}]';
int get hashCode => super.hashCode ^ _hashCode(content);
@@ -150,7 +150,7 @@ class _ScalarNode extends _Node {
// TODO(nweiz): This could be faster if we used a RegExp to check for
// special characters and short-circuited if they didn't exist.
- var escapedValue = value.charCodes.mappedBy((c) {
+ var escapedValue = value.charCodes.map((c) {
switch (c) {
case _Parser.TAB: return "\\t";
case _Parser.LF: return "\\n";
@@ -223,7 +223,7 @@ class _MappingNode extends _Node {
String toString() {
var strContent = content.keys
- .mappedBy((k) => '${k}: ${content[k]}')
+ .map((k) => '${k}: ${content[k]}')
.join(', ');
return '$tag {$strContent}';
}
« no previous file with comments | « pkg/unittest/lib/src/config.dart ('k') | pkg/yaml/lib/visitor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698