| Index: tool/input_sdk/patch/isolate_patch.dart
|
| diff --git a/tool/input_sdk/patch/isolate_patch.dart b/tool/input_sdk/patch/isolate_patch.dart
|
| index b612cced56949081ebe6afb65137b8acae2c7d37..3498c7adfd89b81054c42db7639f0611cec9b612 100644
|
| --- a/tool/input_sdk/patch/isolate_patch.dart
|
| +++ b/tool/input_sdk/patch/isolate_patch.dart
|
| @@ -40,7 +40,7 @@ class Isolate {
|
| Uri packageRoot }) {
|
| if (packageRoot != null) throw new UnimplementedError("packageRoot");
|
| try {
|
| - if (args is List<String>) {
|
| + if (args is List) {
|
| for (int i = 0; i < args.length; i++) {
|
| if (args[i] is! String) {
|
| throw new ArgumentError("Args must be a list of Strings $args");
|
|
|