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

Unified Diff: tests/isolate/isolate_create_error_helper_lib2.dart

Issue 297413002: Ensure that failure to start an isolate all end up in the future. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't need to pretend imports. Created 6 years, 7 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: tests/isolate/isolate_create_error_helper_lib2.dart
diff --git a/pkg/docgen/test/multi_library_code/lib/root_lib.dart b/tests/isolate/isolate_create_error_helper_lib2.dart
similarity index 54%
copy from pkg/docgen/test/multi_library_code/lib/root_lib.dart
copy to tests/isolate/isolate_create_error_helper_lib2.dart
index 74423abfeba22b68b7561d308758df0fdd7d9e60..b34983348f93e39beed15cfb975859346ce5ad02 100644
--- a/pkg/docgen/test/multi_library_code/lib/root_lib.dart
+++ b/tests/isolate/isolate_create_error_helper_lib2.dart
@@ -2,12 +2,10 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library root_lib;
+library isolate.create.error_helper2_lib;
-export 'test_lib.dart';
-export 'test_lib_foo.dart';
-export 'test_lib_bar.dart';
+// This library has a main method with wrong parameters.
-class RootClass {
- RootClass(int a, int b);
+void main(a, b, c) {
+ print("Three required positional parameters: $a, $b, $c");
}
« no previous file with comments | « tests/isolate/isolate_create_error_helper_lib.dart ('k') | tests/isolate/isolate_create_error_helper_lib3.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698