File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
## 24.3.3-wip
2
2
- Added support for some debugging APIs with the DDC library bundle format. - [ #2563 ] ( https://github.com/dart-lang/webdev/issues/2563 )
3
3
- Update ` DCM ` version to ` 1.26.0-1 `
4
+ - Use 'compile js-dev' for compilation instead of invoking DDC directly using knowledge of internals of the dart sdk
4
5
5
6
## 24.3.2
6
7
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ description: >-
6
6
service protocol.
7
7
repository : https://github.com/dart-lang/webdev/tree/main/dwds
8
8
environment :
9
- sdk : ^3.4.0
9
+ sdk : ^3.8.0-edge
10
10
11
11
dependencies :
12
12
async : ^2.9.0
Original file line number Diff line number Diff line change @@ -52,8 +52,6 @@ void testAll({required CompilerOptions compilerOptions}) {
52
52
// generated in the SDK, so we use the current SDK layout and
53
53
// configuration.
54
54
final executable = Platform .resolvedExecutable;
55
- final dartdevc =
56
- SdkConfiguration .defaultConfiguration.compilerWorkerPath! ;
57
55
// redirect logs for testing
58
56
_output = StreamController <String >.broadcast ();
59
57
output.stream.listen (printOnFailure);
@@ -110,7 +108,8 @@ void testAll({required CompilerOptions compilerOptions}) {
110
108
''' );
111
109
112
110
final args = [
113
- dartdevc,
111
+ 'compile' ,
112
+ 'js-dev' ,
114
113
'try.dart' ,
115
114
'-o' ,
116
115
'try.js' ,
Original file line number Diff line number Diff line change @@ -112,7 +112,8 @@ class SdkAssetGenerator {
112
112
113
113
final sdkDirectoryUri = fileSystem.directory (sdkLayout.sdkDirectory).uri;
114
114
final args = < String > [
115
- sdkLayout.dartdevcSnapshotPath,
115
+ 'compile' ,
116
+ 'js-dev' ,
116
117
'--compile-sdk' ,
117
118
'--multi-root' ,
118
119
'$sdkDirectoryUri ' ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ publish_to: none
3
3
description : >-
4
4
Common test functionality.
5
5
environment :
6
- sdk : ^3.1.0
6
+ sdk : ^3.8.0-edge
7
7
8
8
dependencies :
9
9
dwds : any
You can’t perform that action at this time.
0 commit comments