| Index: utils/template/utils.dart
|
| diff --git a/utils/template/utils.dart b/utils/template/utils.dart
|
| index 4d540de040e76487e287f061bea99138fe3fc333..97aa3d2e9425ad47dabc0b5ce8ac6dafddb49d63 100644
|
| --- a/utils/template/utils.dart
|
| +++ b/utils/template/utils.dart
|
| @@ -44,7 +44,7 @@ List zip(Iterable left, Iterable right, mapper(left, right)) {
|
| result.add(mapper(x.next(), y.next()));
|
| }
|
| if (x.hasNext() || y.hasNext()) {
|
| - throw new IllegalArgumentException();
|
| + throw new ArgumentError();
|
| }
|
| return result;
|
| }
|
|
|