Remove deprecated mappedBy.
Committed: https://code.google.com/p/dart/source/detail?r=18575 Reverted: http://code.google.com/p/dart/source/detail?r=18576 Review URL: https://codereview.chromium.org//12212213 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@18579 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
@@ -104,10 +104,6 @@ class _ObjectArray<E> implements List<E> {
|
||||
return IterableMixinWorkaround.mapList(this, f);
|
||||
}
|
||||
|
||||
List mappedBy(f(E element)) {
|
||||
IterableMixinWorkaround.mappedByList(this, f);
|
||||
}
|
||||
|
||||
reduce(initialValue, combine(previousValue, E element)) {
|
||||
return IterableMixinWorkaround.reduce(this, initialValue, combine);
|
||||
}
|
||||
@@ -338,10 +334,6 @@ class _ImmutableArray<E> implements List<E> {
|
||||
return IterableMixinWorkaround.mapList(this, f);
|
||||
}
|
||||
|
||||
List mappedBy(f(E element)) {
|
||||
return IterableMixinWorkaround.mappedByList(this, f);
|
||||
}
|
||||
|
||||
String join([String separator]) {
|
||||
return IterableMixinWorkaround.joinList(this, separator);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user