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

Unified Diff: test/generated_sdk/lib/isolate/isolate.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: test/generated_sdk/lib/isolate/isolate.dart
diff --git a/test/generated_sdk/lib/isolate/isolate.dart b/test/generated_sdk/lib/isolate/isolate.dart
index bb597f8c2866919222265ca43c039f2779873b7b..12fd02be47ea5b6ccdf5659e5535e5afdb06a91f 100644
--- a/test/generated_sdk/lib/isolate/isolate.dart
+++ b/test/generated_sdk/lib/isolate/isolate.dart
@@ -222,7 +222,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