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

Unified Diff: tests/standalone/vmservice/isolate_list_script.dart

Issue 19622003: VM Service isolate listing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
« no previous file with comments | « tests/standalone/standalone.status ('k') | tests/standalone/vmservice/isolate_list_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/vmservice/isolate_list_script.dart
diff --git a/tests/language/const_constructor_mixin3_test.dart b/tests/standalone/vmservice/isolate_list_script.dart
similarity index 54%
copy from tests/language/const_constructor_mixin3_test.dart
copy to tests/standalone/vmservice/isolate_list_script.dart
index c81b7d3ecf6905e5de93b5357bee9ecde95d19fd..a9cc79fe9eb57d905ad569fe7950be6b425c1d3d 100644
--- a/tests/language/const_constructor_mixin3_test.dart
+++ b/tests/standalone/vmservice/isolate_list_script.dart
@@ -2,19 +2,13 @@
// 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.
-class Mixin {
-}
+library isolate_list_script;
-class A {
- const A();
-}
-
-class B extends A
- with Mixin /// 01: compile-time error
- {
- const B();
-}
+import 'dart:io';
main() {
- var a = const B();
+ print(''); // Print blank line to signal that we are ready.
+
+ // Wait until signaled from spawning test.
+ stdin.first.then((_) => exit(0));
}
« no previous file with comments | « tests/standalone/standalone.status ('k') | tests/standalone/vmservice/isolate_list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698