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

Unified Diff: utils/pub/yaml/model.dart

Issue 11414069: Make mappedBy lazy. (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 side-by-side diff with in-line comments
Download patch
Index: utils/pub/yaml/model.dart
diff --git a/utils/pub/yaml/model.dart b/utils/pub/yaml/model.dart
index 08642be3602c948a32fd475fca9ef48890016276..75d9cf6d8b36e256057a4e6ffdcae1184e378021 100644
--- a/utils/pub/yaml/model.dart
+++ b/utils/pub/yaml/model.dart
@@ -88,7 +88,8 @@ class _SequenceNode extends _Node {
return true;
}
- String toString() => '$tag [${Strings.join(content.mappedBy((e) => '$e'), ', ')}]';
+ String toString() =>
+ '$tag [${Strings.join(content.mappedBy((e) => '$e'), ', ')}]';
int get hashCode => super.hashCode ^ _hashCode(content);

Powered by Google App Engine
This is Rietveld 408576698