Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
242bb67d
Unverified
Commit
242bb67d
authored
2 years ago
by
Michael Thomsen
Committed by
GitHub
2 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update null safety warnings in prep for Dart 3 (#110998)
parent
65d891dd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
8 deletions
+9
-8
logger.dart
packages/flutter_tools/lib/src/base/logger.dart
+1
-0
build.dart
packages/flutter_tools/lib/src/commands/build.dart
+2
-2
resident_web_runner.dart
...s/flutter_tools/lib/src/isolated/resident_web_runner.dart
+2
-2
run_hot.dart
packages/flutter_tools/lib/src/run_hot.dart
+2
-2
build_test.dart
...flutter_tools/test/general.shard/commands/build_test.dart
+2
-2
No files found.
packages/flutter_tools/lib/src/base/logger.dart
View file @
242bb67d
...
@@ -722,6 +722,7 @@ class WindowsStdoutLogger extends StdoutLogger {
...
@@ -722,6 +722,7 @@ class WindowsStdoutLogger extends StdoutLogger {
.
replaceAll
(
'✓'
,
'√'
)
.
replaceAll
(
'✓'
,
'√'
)
.
replaceAll
(
'🔨'
,
''
)
.
replaceAll
(
'🔨'
,
''
)
.
replaceAll
(
'💪'
,
''
)
.
replaceAll
(
'💪'
,
''
)
.
replaceAll
(
'⚠️'
,
'!'
)
.
replaceAll
(
'✏️'
,
''
);
.
replaceAll
(
'✏️'
,
''
);
_stdio
.
stdoutWrite
(
windowsMessage
);
_stdio
.
stdoutWrite
(
windowsMessage
);
}
}
...
...
This diff is collapsed.
Click to expand it.
packages/flutter_tools/lib/src/commands/build.dart
View file @
242bb67d
...
@@ -88,11 +88,11 @@ abstract class BuildSubCommand extends FlutterCommand {
...
@@ -88,11 +88,11 @@ abstract class BuildSubCommand extends FlutterCommand {
);
);
}
else
{
}
else
{
globals
.
printStatus
(
globals
.
printStatus
(
'Building without sound null safety'
,
'Building without sound null safety
⚠️
'
,
emphasis:
true
,
emphasis:
true
,
);
);
globals
.
printStatus
(
globals
.
printStatus
(
'
For more information see https://dart.dev/null-safety/unsound-
null-safety'
,
'
Dart 3 will only support sound null safety, see https://dart.dev/
null-safety'
,
);
);
}
}
globals
.
printStatus
(
''
);
globals
.
printStatus
(
''
);
...
...
This diff is collapsed.
Click to expand it.
packages/flutter_tools/lib/src/isolated/resident_web_runner.dart
View file @
242bb67d
...
@@ -615,11 +615,11 @@ class ResidentWebRunner extends ResidentRunner {
...
@@ -615,11 +615,11 @@ class ResidentWebRunner extends ResidentRunner {
_logger
!.
printStatus
(
'💪 Running with sound null safety 💪'
,
emphasis:
true
);
_logger
!.
printStatus
(
'💪 Running with sound null safety 💪'
,
emphasis:
true
);
}
else
{
}
else
{
_logger
!.
printStatus
(
_logger
!.
printStatus
(
'Running with
unsound null safety
'
,
'Running with
out sound null safety ⚠️
'
,
emphasis:
true
,
emphasis:
true
,
);
);
_logger
!.
printStatus
(
_logger
!.
printStatus
(
'
For more information see https://dart.dev/null-safety/unsound-
null-safety'
,
'
Dart 3 will only support sound null safety, see https://dart.dev/
null-safety'
,
);
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
packages/flutter_tools/lib/src/run_hot.dart
View file @
242bb67d
...
@@ -1026,11 +1026,11 @@ class HotRunner extends ResidentRunner {
...
@@ -1026,11 +1026,11 @@ class HotRunner extends ResidentRunner {
globals
.
printStatus
(
'💪 Running with sound null safety 💪'
,
emphasis:
true
);
globals
.
printStatus
(
'💪 Running with sound null safety 💪'
,
emphasis:
true
);
}
else
{
}
else
{
globals
.
printStatus
(
globals
.
printStatus
(
'Running with
unsound null safety
'
,
'Running with
out sound null safety ⚠️
'
,
emphasis:
true
,
emphasis:
true
,
);
);
globals
.
printStatus
(
globals
.
printStatus
(
'
For more information see https://dart.dev/null-safety/unsound-
null-safety'
,
'
Dart 3 will only support sound null safety, see https://dart.dev/
null-safety'
,
);
);
}
}
globals
.
printStatus
(
''
);
globals
.
printStatus
(
''
);
...
...
This diff is collapsed.
Click to expand it.
packages/flutter_tools/test/general.shard/commands/build_test.dart
View file @
242bb67d
...
@@ -69,8 +69,8 @@ void main() {
...
@@ -69,8 +69,8 @@ void main() {
);
);
FakeBuildSubCommand
().
test
(
unsound
);
FakeBuildSubCommand
().
test
(
unsound
);
expect
(
expect
(
testLogger
.
statusText
,
testLogger
.
statusText
,
contains
(
'Building without sound null safety
'
));
contains
(
'Building without sound null safety ⚠️
'
));
testLogger
.
clear
();
testLogger
.
clear
();
FakeBuildSubCommand
().
test
(
sound
);
FakeBuildSubCommand
().
test
(
sound
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment