| Index: sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| index 6dea90437d71fe470488dd037a57663d1598caef..bbf3c20d03e1715a8a840a8d1dcfff7ee9b57c5e 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| @@ -619,7 +619,7 @@ class ReferencedElementCollector extends Visitor {
|
| }
|
| }
|
|
|
| -compareBy(f) => (x, y) => f(x).compareTo(f(y));
|
| +Comparator compareBy(f) => (x, y) => f(x).compareTo(f(y));
|
|
|
| List sorted(Iterable l, comparison) {
|
| final result = new List.from(l);
|
|
|