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
b891adb4
Unverified
Commit
b891adb4
authored
May 21, 2021
by
Jonah Williams
Committed by
GitHub
May 21, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] migrate artifacts to null safety (#83073)
parent
31e75545
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
118 additions
and
114 deletions
+118
-114
artifacts.dart
packages/flutter_tools/lib/src/artifacts.dart
+110
-104
artifacts_test.dart
...ages/flutter_tools/test/general.shard/artifacts_test.dart
+8
-10
No files found.
packages/flutter_tools/lib/src/artifacts.dart
View file @
b891adb4
This diff is collapsed.
Click to expand it.
packages/flutter_tools/test/general.shard/artifacts_test.dart
View file @
b891adb4
...
...
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.8
import
'package:file/memory.dart'
;
import
'package:flutter_tools/src/artifacts.dart'
;
import
'package:flutter_tools/src/base/file_system.dart'
;
...
...
@@ -18,10 +16,10 @@ import '../src/fakes.dart';
void
main
(
)
{
group
(
'CachedArtifacts'
,
()
{
CachedArtifacts
artifacts
;
Cache
cache
;
FileSystem
fileSystem
;
Platform
platform
;
late
CachedArtifacts
artifacts
;
late
Cache
cache
;
late
FileSystem
fileSystem
;
late
Platform
platform
;
setUp
(()
{
fileSystem
=
MemoryFileSystem
.
test
();
...
...
@@ -185,10 +183,10 @@ void main() {
});
group
(
'LocalEngineArtifacts'
,
()
{
LocalEngineArtifacts
artifacts
;
Cache
cache
;
FileSystem
fileSystem
;
Platform
platform
;
late
LocalEngineArtifacts
artifacts
;
late
Cache
cache
;
late
FileSystem
fileSystem
;
late
Platform
platform
;
setUp
(()
{
fileSystem
=
MemoryFileSystem
.
test
();
...
...
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