This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed
_fe_analyzer_shared/lib/src/messages Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -998,14 +998,14 @@ const MessageCode messageCompilingWithSoundNullSafety = const MessageCode(
998998 message: r"""Compiling with sound null safety""" );
999999
10001000// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
1001- const Code <Null > codeCompilingWithUnsoundNullSafety =
1002- messageCompilingWithUnsoundNullSafety ;
1001+ const Code <Null > codeCompilingWithoutSoundNullSafety =
1002+ messageCompilingWithoutSoundNullSafety ;
10031003
10041004// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
1005- const MessageCode messageCompilingWithUnsoundNullSafety = const MessageCode (
1006- "CompilingWithUnsoundNullSafety " ,
1005+ const MessageCode messageCompilingWithoutSoundNullSafety = const MessageCode (
1006+ "CompilingWithoutSoundNullSafety " ,
10071007 severity: Severity .info,
1008- message: r"""Compiling with unsound null safety""" );
1008+ message: r"""Compiling without sound null safety""" );
10091009
10101010// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
10111011const Template <
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ void main() {
1717
1818const String soundNullSafetyMessage = 'Info: Compiling with sound null safety' ;
1919const String unsoundNullSafetyMessage =
20- 'Info: Compiling with unsound null safety' ;
20+ 'Info: Compiling without sound null safety' ;
2121
2222void defineCompileTests () {
2323 // *** NOTE ***: These tests *must* be run with the `--use-sdk` option
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ import '../fasta/fasta_codes.dart'
4848 messageCantInferPackagesFromManyInputs,
4949 messageCantInferPackagesFromPackageUri,
5050 messageCompilingWithSoundNullSafety,
51- messageCompilingWithUnsoundNullSafety ,
51+ messageCompilingWithoutSoundNullSafety ,
5252 messageInternalProblemProvidedBothCompileSdkAndSdkSummary,
5353 messageMissingInput,
5454 noLength,
@@ -277,8 +277,8 @@ class ProcessedOptions {
277277 if (_raw.invocationModes.contains (InvocationMode .compile)) {
278278 switch (nnbdMode) {
279279 case NnbdMode .Weak :
280- reportWithoutLocation (messageCompilingWithUnsoundNullSafety ,
281- messageCompilingWithUnsoundNullSafety .severity);
280+ reportWithoutLocation (messageCompilingWithoutSoundNullSafety ,
281+ messageCompilingWithoutSoundNullSafety .severity);
282282 break ;
283283 case NnbdMode .Strong :
284284 reportWithoutLocation (messageCompilingWithSoundNullSafety,
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ CantUseSuperBoundedTypeForInstanceCreation/example: Fail
7070ClassInNullAwareReceiver/analyzerCode: Fail
7171ColonInPlaceOfIn/example: Fail
7272CompilingWithSoundNullSafety/analyzerCode: Fail
73- CompilingWithUnsoundNullSafety /analyzerCode: Fail
73+ CompilingWithoutSoundNullSafety /analyzerCode: Fail
7474ConflictingModifiers/part_wrapped_script1: Fail
7575ConflictingModifiers/script1: Fail
7676ConflictsWithConstructor/example: Fail
Original file line number Diff line number Diff line change @@ -4940,8 +4940,8 @@ CompilingWithSoundNullSafety:
49404940 script : |
49414941 main() {}
49424942
4943- CompilingWithUnsoundNullSafety :
4944- template : " Compiling with unsound null safety"
4943+ CompilingWithoutSoundNullSafety :
4944+ template : " Compiling without sound null safety"
49454945 configuration : nnbd-weak,compile
49464946 severity : INFO
49474947 script : |
You can’t perform that action at this time.
0 commit comments