Skip to content

Commit 2a3b6ef

Browse files
authored
Merge branch 'main' into sdk_copy_with_underscore
2 parents 59dffe6 + 659e1df commit 2a3b6ef

File tree

30 files changed

+132
-21
lines changed

30 files changed

+132
-21
lines changed

dwds/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
## 24.4.0-wip
2+
13
## 24.3.0
24

35
- Update to be forward compatible with changes to `package:shelf_web_socket`.
4-
- Added support for some debugging APIs with the DDC library bundle format. - [#2537](https://github.com/dart-lang/webdev/issues/2537)
5-
- Added support for some debugging APIs with the DDC library bundle format. - [#2537](https://github.com/dart-lang/webdev/issues/2537),[#2544](https://github.com/dart-lang/webdev/issues/2544)
6+
- Added support for some debugging APIs with the DDC library bundle format. - [#2537](https://github.com/dart-lang/webdev/issues/2537),[#2544](https://github.com/dart-lang/webdev/issues/2544),[#2548](https://github.com/dart-lang/webdev/issues/2548)
67
- Fix issue where batched expression evals were failing if any subexpression failed. - [#2551](https://github.com/dart-lang/webdev/issues/2551)
78
- Expose a partial implementation of
89
`FrontendServerDdcLibraryBundleStrategyProvider`.

dwds/debug_extension/web/chrome_api.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// TODO: https://github.com/dart-lang/webdev/issues/2508
6+
// ignore: deprecated_member_use
57
import 'dart:html';
68

79
import 'package:js/js.dart';

dwds/debug_extension/web/cider_connection.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
library;
77

88
import 'dart:convert';
9+
// TODO: https://github.com/dart-lang/webdev/issues/2508
10+
// ignore: deprecated_member_use
911
import 'dart:js_util';
1012

1113
import 'package:js/js.dart';

dwds/debug_extension/web/copier.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
@JS()
66
library;
77

8+
// TODO: https://github.com/dart-lang/webdev/issues/2508
9+
// ignore: deprecated_member_use
810
import 'dart:html';
911

1012
import 'package:js/js.dart';

dwds/debug_extension/web/debug_info.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
library;
77

88
import 'dart:convert';
9+
// TODO: https://github.com/dart-lang/webdev/issues/2508
10+
// ignore: deprecated_member_use
911
import 'dart:html';
12+
// TODO: https://github.com/dart-lang/webdev/issues/2508
13+
// ignore: deprecated_member_use
1014
import 'dart:js';
1115

1216
import 'package:dwds/data/debug_info.dart';

dwds/debug_extension/web/detector.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
library;
77

88
import 'dart:convert';
9+
// TODO: https://github.com/dart-lang/webdev/issues/2508
10+
// ignore: deprecated_member_use
911
import 'dart:html';
12+
// TODO: https://github.com/dart-lang/webdev/issues/2508
13+
// ignore: deprecated_member_use
1014
import 'dart:js_util';
1115

1216
import 'package:dwds/data/debug_info.dart';

dwds/debug_extension/web/devtools.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
@JS()
66
library;
77

8+
// TODO: https://github.com/dart-lang/webdev/issues/2508
9+
// ignore: deprecated_member_use
810
import 'dart:html';
911

1012
import 'package:dwds/data/debug_info.dart';

dwds/debug_extension/web/messaging.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ library;
77

88
import 'dart:async';
99
import 'dart:convert';
10+
// TODO: https://github.com/dart-lang/webdev/issues/2508
11+
// ignore: deprecated_member_use
1012
import 'dart:js_util';
1113

1214
import 'package:js/js.dart';

dwds/debug_extension/web/panel.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ library;
77

88
import 'dart:async';
99
import 'dart:convert';
10+
// TODO: https://github.com/dart-lang/webdev/issues/2508
11+
// ignore: deprecated_member_use
1012
import 'dart:html';
1113

1214
import 'package:dwds/data/debug_info.dart';

dwds/debug_extension/web/popup.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ library;
77

88
import 'dart:async';
99
import 'dart:convert';
10+
// TODO: https://github.com/dart-lang/webdev/issues/2508
11+
// ignore: deprecated_member_use
1012
import 'dart:html';
1113

1214
import 'package:dwds/data/debug_info.dart';

0 commit comments

Comments
 (0)