Skip to content

Commit 5718438

Browse files
committed
deprecated sound/weak sdkSummaryPath but kept variables in constructor to avoid breaking changes
1 parent 9bb544d commit 5718438

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dwds/lib/src/utilities/sdk_configuration.dart

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,17 @@ class SdkConfiguration {
8282
final String? sdkSummaryPath;
8383
final String? compilerWorkerPath;
8484

85+
@Deprecated('Only sound null safety is supported as of Dart 3.0')
86+
final String? weakSdkSummaryPath;
87+
88+
@Deprecated('Only sound null safety is supported as of Dart 3.0')
89+
final String? soundSdkSummaryPath;
90+
8591
const SdkConfiguration({
8692
this.sdkDirectory,
8793
this.sdkSummaryPath,
94+
this.weakSdkSummaryPath,
95+
this.soundSdkSummaryPath,
8896
this.compilerWorkerPath,
8997
});
9098

0 commit comments

Comments
 (0)