| Index: sdk/lib/_internal/compiler/implementation/util/util.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/util/util.dart b/sdk/lib/_internal/compiler/implementation/util/util.dart
|
| index dc4474ea1843e9e361d32b577a37f1466a457cad..3dfd5b825c703313700c5f1eb1d7a7a28fc56cbf 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/util/util.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/util/util.dart
|
| @@ -41,6 +41,16 @@ class SpannableAssertionFailure {
|
| '${message != null ? ': $message' : ''}';
|
| }
|
|
|
| +bool equalElements(List a, List b) {
|
| + if (a.length != b.length) return false;
|
| + for (int index = 0; index < a.length; index++) {
|
| + if (a[index] != b[index]) {
|
| + return false;
|
| + }
|
| + }
|
| + return true;
|
| +}
|
| +
|
| /**
|
| * Helper method for printing stack traces for debugging.
|
| *
|
|
|