Index: runtime/bin/vmservice/constants.dart |
diff --git a/tests/language/extends_test_lib.dart b/runtime/bin/vmservice/constants.dart |
similarity index 62% |
copy from tests/language/extends_test_lib.dart |
copy to runtime/bin/vmservice/constants.dart |
index d62ca8f7da480b38ac34aed6411d25acba5ae339..a8b6b2403f045b484034771065709ed6edec61fa 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 isolateStartupMessageId = 1; |
+ static const int isolateShutdownMessageId = 2; |
siva
2013/07/19 17:41:16
Can these just be constants, eg:
static const int
Cutch
2013/07/19 18:15:02
Done.
|
} |