| Index: sky/sdk/lib/rendering/object.dart
|
| diff --git a/sky/sdk/lib/rendering/object.dart b/sky/sdk/lib/rendering/object.dart
|
| index bc100a77d188ba23c0d543651a0da22a6e10c093..094796673bd773229e0d0bcfdf5756fb265a21d1 100644
|
| --- a/sky/sdk/lib/rendering/object.dart
|
| +++ b/sky/sdk/lib/rendering/object.dart
|
| @@ -408,6 +408,11 @@ abstract class ContainerRenderObjectMixin<ChildType extends RenderObject, Parent
|
| adoptChild(child);
|
| _addToChildList(child, before: before);
|
| }
|
| + void addAll(List<ChildType> children) {
|
| + if (children != null)
|
| + for (ChildType child in children)
|
| + add(child);
|
| + }
|
| void _removeFromChildList(ChildType child) {
|
| assert(child.parentData is ParentDataType);
|
| assert(_debugUltimatePreviousSiblingOf(child, equals: _firstChild));
|
|
|