Index: tools/dom/templates/immutable_list_mixin.darttemplate |
diff --git a/tools/dom/templates/immutable_list_mixin.darttemplate b/tools/dom/templates/immutable_list_mixin.darttemplate |
index 850c2f82ab3a785cfedf13e1b84796ab0f3a5c85..3ec2b790f2e8ea2dc15083aa7e7d54fc8a6e8661 100644 |
--- a/tools/dom/templates/immutable_list_mixin.darttemplate |
+++ b/tools/dom/templates/immutable_list_mixin.darttemplate |
@@ -32,6 +32,9 @@ $endif |
Iterable map(f($E element)) => |
IterableMixinWorkaround.mapList(this, f); |
+ List mappedBy(f($E element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
+ |
Iterable<$E> where(bool f($E element)) => |
IterableMixinWorkaround.where(this, f); |