| Index: lib/compiler/implementation/util/link_implementation.dart
|
| diff --git a/lib/compiler/implementation/util/link_implementation.dart b/lib/compiler/implementation/util/link_implementation.dart
|
| index 75a4b9e441ccdea3e83fa9e29b35896e5a628c49..fd855bb38dd3d16885d0b541a2a837861b51b1fc 100644
|
| --- a/lib/compiler/implementation/util/link_implementation.dart
|
| +++ b/lib/compiler/implementation/util/link_implementation.dart
|
| @@ -62,7 +62,7 @@ class LinkTail<T> implements EmptyLink<T> {
|
|
|
| Link<T> reversePrependAll(Link<T> from) {
|
| if (from.isEmpty()) return this;
|
| - return from.head.reversePrependAll(from.tail);
|
| + return this.prepend(from.head).reversePrependAll(from.tail);
|
| }
|
|
|
| List toList() => const [];
|
|
|