Index: runtime/bin/vmservice/constants.dart |
diff --git a/tests/language/extends_test_lib.dart b/runtime/bin/vmservice/constants.dart |
similarity index 61% |
copy from tests/language/extends_test_lib.dart |
copy to runtime/bin/vmservice/constants.dart |
index d62ca8f7da480b38ac34aed6411d25acba5ae339..02c950ea129d517c039bc03f2851829b3cd35ecb 100644 |
--- a/tests/language/extends_test_lib.dart |
+++ b/runtime/bin/vmservice/constants.dart |
@@ -2,8 +2,9 @@ |
// 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 ExtendsTestLib; |
+part of vmservice; |
-class A { |
- var y = "class A from library"; |
+class Constants { |
+ static const int ISOLATE_STARTUP_MESSAGE_ID = 1; |
+ static const int ISOLATE_SHUTDOWN_MESSAGE_ID = 2; |
} |