Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Unified Diff: tool/input_sdk/patch/isolate_patch.dart

Issue 1112403004: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Formatting fix Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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");

Powered by Google App Engine
This is Rietveld 408576698