Chromium Code Reviews| Index: lib/src/utils.dart |
| diff --git a/lib/src/utils.dart b/lib/src/utils.dart |
| index 16dddb9504a452f1e2e56f00e0ba425fcbd52553..15b06aac0c6bea4588ef64936489e754e87ce146 100644 |
| --- a/lib/src/utils.dart |
| +++ b/lib/src/utils.dart |
| @@ -474,3 +474,10 @@ class FileSystem { |
| DartType getStaticType(Expression e) => |
| e.staticType ?? DynamicTypeImpl.instance; |
| + |
| +// TODO(leafp) Factor this out or use an existing library |
| +class Tuple2<T0, T1> { |
| + final T0 e0; |
| + final T1 e1; |
| + Tuple2(this.e0, this.e1); |
| +} |