Skip to content

Commit 3deaa0c

Browse files
bkonyiderekxu16
andauthored
Prep DWDS for next release (24.2.0-wip) and get presubmit checks working again (#2485)
* Prep DWDS for next release (24.2.0-wip) * [DWDS] Make TestContext.setUp set the --disable-gpu Chrome option when launching Chrome * [DWDS] Skip frontend_server_ddc_and_canary_evaluate_test.dart * [webdev] Skip cases in webdev/test/e2e_test.dart that are failing on Windows --------- Co-authored-by: Derek Xu <[email protected]>
1 parent 45df1cc commit 3deaa0c

File tree

8 files changed

+568
-553
lines changed

8 files changed

+568
-553
lines changed

dwds/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 24.2.0-wip
2+
13
## 24.1.0
24

35
- 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)

dwds/lib/src/debugging/instance.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,8 @@ class InstanceHelper extends Domain {
268268
objectId,
269269
offset: offset,
270270
count: count,
271-
length: metaData.kind != InstanceKind.kPlainInstance
272-
? metaData.length
273-
: null,
271+
length:
272+
metaData.kind != InstanceKind.kPlainInstance ? metaData.length : null,
274273
);
275274

276275
final dartProperties = await _dartFieldsFor(properties, remoteObject);

0 commit comments

Comments
 (0)