Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions dwds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 24.2.0-wip

## 24.1.0

- Fix bug where debugging clients are not aware of service extensions when connecting to a new web app. - [#2388](https://github.com/dart-lang/webdev/pull/2388)
Expand Down
5 changes: 2 additions & 3 deletions dwds/lib/src/debugging/instance.dart
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,8 @@ class InstanceHelper extends Domain {
objectId,
offset: offset,
count: count,
length: metaData.kind != InstanceKind.kPlainInstance
? metaData.length
: null,
length:
metaData.kind != InstanceKind.kPlainInstance ? metaData.length : null,
);

final dartProperties = await _dartFieldsFor(properties, remoteObject);
Expand Down
Loading
Loading