10dd59c039
This CL contains breaking changes for package:dtd and prepares both package:dart_service_protocol_shared and package:dtd for publish. This CL also fixes https://github.com/dart-lang/sdk/issues/60757 so that DTD-registered services are sent over the `Service` stream upon initial subscription like what is done for client-registered services. Change-Id: I619af816e64af01864c7ed9b98743c6691bf7e0b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/429161 Reviewed-by: Ben Konyi <bkonyi@google.com> Commit-Queue: Kenzie Davisson <kenzieschmoll@google.com>
14 lines
537 B
Dart
14 lines
537 B
Dart
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
|
|
// 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.
|
|
|
|
/// Support for communicating with the Dart Tooling Daemon.
|
|
library;
|
|
|
|
export 'src/constants.dart';
|
|
export 'src/dart_tooling_daemon.dart';
|
|
export 'src/response_types/response_types.dart';
|
|
export 'src/rpc_error_codes.dart';
|
|
export 'src/services/connected_app_service.dart';
|
|
export 'src/services/file_system_service.dart';
|