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
19fe92e3
Commit
19fe92e3
authored
Nov 20, 2015
by
Adam Barth
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #521 from abarth/fix_analyzer
Fix analyzer warnings in updater package
parents
dc23af9f
4cd1fb17
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
analyze.dart
packages/flutter_tools/lib/src/commands/analyze.dart
+7
-1
main.dart
packages/updater/lib/main.dart
+1
-1
pipe_to_file.dart
packages/updater/lib/pipe_to_file.dart
+3
-3
No files found.
packages/flutter_tools/lib/src/commands/analyze.dart
View file @
19fe92e3
...
...
@@ -96,6 +96,7 @@ class AnalyzeCommand extends FlutterCommand {
pubSpecDirectories
.
add
(
flutterDir
.
path
);
// .../packages/*/bin/*.dart
// .../packages/*/lib/main.dart
Directory
packages
=
new
Directory
(
path
.
join
(
ArtifactStore
.
flutterRoot
,
'packages'
));
for
(
FileSystemEntity
entry
in
packages
.
listSync
())
{
if
(
entry
is
Directory
)
{
...
...
@@ -109,6 +110,11 @@ class AnalyzeCommand extends FlutterCommand {
}
}
}
String
mainPath
=
path
.
join
(
entry
.
path
,
'lib'
,
'main.dart'
);
if
(
FileSystemEntity
.
isFileSync
(
mainPath
))
{
dartFiles
.
add
(
mainPath
);
foundOne
=
true
;
}
if
(
foundOne
)
pubSpecDirectories
.
add
(
entry
.
path
);
}
...
...
packages/updater/lib/main.dart
View file @
19fe92e3
...
...
@@ -83,7 +83,7 @@ class UpdateTask {
Future
<
yaml
.
YamlMap
>
_fetchManifest
()
async
{
String
manifestUrl
=
_currentManifest
[
'update-url'
]
+
'/'
+
kManifestFile
;
String
manifestData
=
await
http
.
get
(
manifestUrl
)
;
String
manifestData
=
(
await
http
.
get
(
manifestUrl
)).
body
;
return
yaml
.
loadYaml
(
manifestData
,
sourceUrl:
manifestUrl
);
}
...
...
packages/updater/lib/pipe_to_file.dart
View file @
19fe92e3
...
...
@@ -11,11 +11,11 @@ import 'package:mojo/core.dart';
// Helper class to drain the contents of a mojo data pipe to a file.
class
PipeToFile
{
MojoDataPipeConsumer
_consumer
;
MojoEventS
tream
_eventStream
;
MojoEventS
ubscription
_eventStream
;
IOSink
_outputStream
;
PipeToFile
(
this
.
_consumer
,
String
outputPath
)
{
_eventStream
=
new
MojoEventS
tream
(
_consumer
.
handle
);
_eventStream
=
new
MojoEventS
ubscription
(
_consumer
.
handle
);
_outputStream
=
new
File
(
outputPath
).
openWrite
();
}
...
...
@@ -33,7 +33,7 @@ class PipeToFile {
Future
drain
()
async
{
Completer
completer
=
new
Completer
();
// TODO(mpcomplete): Is it legit to pass an async callback to listen?
_eventStream
.
listen
((
List
<
int
>
event
)
async
{
_eventStream
.
subscribe
((
List
<
int
>
event
)
async
{
MojoHandleSignals
mojoSignals
=
new
MojoHandleSignals
(
event
[
1
]);
if
(
mojoSignals
.
isReadable
)
{
MojoResult
result
=
await
_doRead
();
...
...
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