Chromium Code Reviews| 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 0b51aed5528b8bf645afb78614b1af9a92ee07c1..8d267f9ce9426a5be3af8b6a0c5a20aded982c4d 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/util/util.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/util/util.dart |
| @@ -296,3 +296,9 @@ int computeHashCode(part1, [part2, part3, part4, part5]) { |
| ^ part4.hashCode |
| ^ part5.hashCode) & 0x3fffffff; |
| } |
| + |
| +class Pair<S, T> { |
|
floitsch
2014/03/03 14:18:06
Still needed?
sigurdm
2014/03/04 12:36:19
No.
|
| + final S first; |
| + final T second; |
| + Pair(this.first, this.second); |
| +} |