Index: runtime/bin/vmservice/service_request_router.dart |
diff --git a/tests/language/extends_test_lib.dart b/runtime/bin/vmservice/service_request_router.dart |
similarity index 69% |
copy from tests/language/extends_test_lib.dart |
copy to runtime/bin/vmservice/service_request_router.dart |
index d62ca8f7da480b38ac34aed6411d25acba5ae339..6bb5de542e97b7dc864a804db8a38dde9bb4a98f 100644 |
--- a/tests/language/extends_test_lib.dart |
+++ b/runtime/bin/vmservice/service_request_router.dart |
@@ -2,8 +2,8 @@ |
// 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"; |
+abstract class ServiceRequestRouter { |
+ bool route(ServiceRequest request); |
} |