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
73499704
Commit
73499704
authored
Jul 12, 2019
by
Tim Sneath
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update comments to match precache help
parent
b322fdd5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cache.dart
packages/flutter_tools/lib/src/cache.dart
+4
-4
No files found.
packages/flutter_tools/lib/src/cache.dart
View file @
73499704
...
...
@@ -26,7 +26,7 @@ class DevelopmentArtifact {
/// This should match the flag name in precache.dart
final
String
name
;
/// Whether this artifact should
not be us
able on stable branches.
/// Whether this artifact should
be unavail
able on stable branches.
final
bool
unstable
;
/// Artifacts required for Android development.
...
...
@@ -35,7 +35,7 @@ class DevelopmentArtifact {
/// Artifacts required for iOS development.
static
const
DevelopmentArtifact
iOS
=
DevelopmentArtifact
.
_
(
'ios'
);
/// Artifacts required for web development
,
/// Artifacts required for web development
.
static
const
DevelopmentArtifact
web
=
DevelopmentArtifact
.
_
(
'web'
,
unstable:
true
);
/// Artifacts required for desktop macOS.
...
...
@@ -44,13 +44,13 @@ class DevelopmentArtifact {
/// Artifacts required for desktop Windows.
static
const
DevelopmentArtifact
windows
=
DevelopmentArtifact
.
_
(
'windows'
,
unstable:
true
);
/// Artifacts required for desktop
l
inux.
/// Artifacts required for desktop
L
inux.
static
const
DevelopmentArtifact
linux
=
DevelopmentArtifact
.
_
(
'linux'
,
unstable:
true
);
/// Artifacts required for Fuchsia.
static
const
DevelopmentArtifact
fuchsia
=
DevelopmentArtifact
.
_
(
'fuchsia'
,
unstable:
true
);
/// Artifacts required by a
ll developments
.
/// Artifacts required by a
ny development platform
.
static
const
DevelopmentArtifact
universal
=
DevelopmentArtifact
.
_
(
'universal'
);
/// The vaulues of DevelopmentArtifacts.
...
...
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