Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dwds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 25.1.1-wip
## 25.1.1

- Bump SDK constraint to ^3.10.0
- Bump SDK constraint to ^3.10.0.
- Expose `dtdUri` via `DebugConnection`.

## 25.1.0

Expand Down
3 changes: 3 additions & 0 deletions dwds/lib/src/connections/debug_connection.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ class DebugConnection {
/// The endpoint of the Dart DevTools instance.
String? get devToolsUri => _appDebugServices.devToolsUri?.toString();

/// The endpoint of the Dart Tooling Daemon (DTD).
String? get dtdUri => _appDebugServices.dtdUri?.toString();

/// A client of the Dart VM Service with DWDS specific extensions.
VmService get vmService => _appDebugServices.dwdsVmClient.client;

Expand Down
1 change: 1 addition & 0 deletions dwds/lib/src/handlers/dev_handler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,7 @@ class DevHandler {
dwdsStats,
dds?.wsUri,
dds?.devToolsUri,
dds?.dtdUri,
);
final encodedUri = await debugService.encodedUri;
_logger.info('Debug service listening on $encodedUri\n');
Expand Down
Loading
Loading