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
61c00373
Commit
61c00373
authored
May 04, 2016
by
Devon Carew
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checked mode fix; add type annotation (#3737)
parent
a5eb4c04
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
27 deletions
+3
-27
dartdoc.dart
dev/dartdoc.dart
+0
-25
markdown_style_raw.dart
packages/flutter_markdown/lib/src/markdown_style_raw.dart
+1
-1
flutter_command_runner.dart
.../flutter_tools/lib/src/runner/flutter_command_runner.dart
+2
-1
No files found.
dev/dartdoc.dart
deleted
100755 → 0
View file @
a5eb4c04
#
!/
usr
/
bin
/
env
dart
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:convert'
;
import
'dart:io'
;
// TODO (devoncarew): Remove this once the chromium bot is updated.
Future
<
Null
>
main
(
List
<
String
>
args
)
async
{
Process
.
runSync
(
'pub'
,
<
String
>[
'get'
],
workingDirectory:
'dev/tools'
);
Process
process
=
await
Process
.
start
(
'dart'
,
<
String
>[
'dartdoc.dart'
],
workingDirectory:
'dev/tools'
);
process
.
stdout
.
transform
(
UTF8
.
decoder
)
.
transform
(
const
LineSplitter
())
.
listen
(
print
);
process
.
stderr
.
transform
(
UTF8
.
decoder
)
.
transform
(
const
LineSplitter
())
.
listen
(
print
);
exit
(
await
process
.
exitCode
);
}
packages/flutter_markdown/lib/src/markdown_style_raw.dart
View file @
61c00373
...
...
@@ -100,7 +100,7 @@ class MarkdownStyleRaw {
Map
<
String
,
TextStyle
>
get
styles
=>
_styles
;
void
_init
()
{
_styles
=
{
_styles
=
<
String
,
TextStyle
>
{
'a'
:
a
,
'p'
:
p
,
'li'
:
p
,
...
...
packages/flutter_tools/lib/src/runner/flutter_command_runner.dart
View file @
61c00373
...
...
@@ -425,6 +425,7 @@ class FlutterCommandRunner extends CommandRunner {
.
listSync
(
followLinks:
false
)
.
expand
((
FileSystemEntity
entity
)
{
return
entity
is
Directory
?
_gatherProjectPaths
(
entity
.
path
)
:
<
String
>[];
});
})
.
toList
();
}
}
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