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

Unified Diff: lib/runtime/dart/isolate.js

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: lib/runtime/dart/isolate.js
diff --git a/lib/runtime/dart/isolate.js b/lib/runtime/dart/isolate.js
index e8f16f83952fb18f7e6398127a24ddc88e6e322e..3f55a6c0d8467e931aa159cd938f6e7818f423a4 100644
--- a/lib/runtime/dart/isolate.js
+++ b/lib/runtime/dart/isolate.js
@@ -43,7 +43,7 @@ var isolate;
if (packageRoot != null)
throw new core.UnimplementedError("packageRoot");
try {
- if (dart.is(args, core.List$(core.String))) {
+ if (dart.is(args, core.List)) {
for (let i = 0; dart.notNull(i) < dart.notNull(args[core.$length]); i = dart.notNull(i) + 1) {
if (!(typeof args[core.$get](i) == 'string')) {
throw new core.ArgumentError(`Args must be a list of Strings ${args}`);

Powered by Google App Engine
This is Rietveld 408576698