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
8109bde6
Commit
8109bde6
authored
May 19, 2016
by
Phil Quitslund
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4036 from pq/comment_refs
Cleanup dangling comment references.
parents
0b5072c2
1a6f499b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
5 deletions
+7
-5
markdown_style.dart
packages/flutter_markdown/lib/src/markdown_style.dart
+1
-0
markdown_style_raw.dart
packages/flutter_markdown/lib/src/markdown_style_raw.dart
+1
-0
constraint.dart
packages/flutter_sprites/lib/src/constraint.dart
+2
-2
executable.dart
packages/flutter_tools/lib/executable.dart
+1
-1
device.dart
packages/flutter_tools/lib/src/device.dart
+2
-2
No files found.
packages/flutter_markdown/lib/src/markdown_style.dart
View file @
8109bde6
...
...
@@ -3,6 +3,7 @@
// found in the LICENSE file.
import
'package:flutter/material.dart'
;
import
'markdown.dart'
;
import
'markdown_style_raw.dart'
;
/// Style used for rendering markdown formatted text using the [MarkdownBody]
...
...
packages/flutter_markdown/lib/src/markdown_style_raw.dart
View file @
8109bde6
...
...
@@ -3,6 +3,7 @@
// found in the LICENSE file.
import
'package:flutter/widgets.dart'
;
import
'markdown.dart'
;
/// Style used for rendering markdown formatted text using the [MarkdownBody]
/// widget.
...
...
packages/flutter_sprites/lib/src/constraint.dart
View file @
8109bde6
...
...
@@ -5,8 +5,8 @@ part of flutter_sprites;
/// constraints property.
///
/// Constrains are applied after the update calls are
/// completed. They can also be applied at any time by calling
a [Node]'s
/// [
applyConstraints] method
. It's possible to create custom constraints by
/// completed. They can also be applied at any time by calling
/// [
Node.applyConstraints]
. It's possible to create custom constraints by
/// overriding this class and implementing the [constrain] method.
abstract
class
Constraint
{
/// Called before the node's update method is called. This method can be
...
...
packages/flutter_tools/lib/executable.dart
View file @
8109bde6
...
...
@@ -42,7 +42,7 @@ import 'src/runner/flutter_command_runner.dart';
/// Main entry point for commands.
///
/// This function is intended to be used from the
[flutter]
command line tool.
/// This function is intended to be used from the
`flutter`
command line tool.
Future
<
Null
>
main
(
List
<
String
>
args
)
async
{
bool
help
=
args
.
contains
(
'-h'
)
||
args
.
contains
(
'--help'
);
bool
verbose
=
args
.
contains
(
'-v'
)
||
args
.
contains
(
'--verbose'
);
...
...
packages/flutter_tools/lib/src/device.dart
View file @
8109bde6
...
...
@@ -247,7 +247,7 @@ class DebuggingOptions {
bool
get
hasObservatoryPort
=>
observatoryPort
!=
null
;
/// Return the user specified observatory port. If that isn't available,
/// return [
d
efaultObservatoryPort], or a port close to that one.
/// return [
kD
efaultObservatoryPort], or a port close to that one.
Future
<
int
>
findBestObservatoryPort
()
{
if
(
hasObservatoryPort
)
return
new
Future
<
int
>.
value
(
observatoryPort
);
...
...
@@ -257,7 +257,7 @@ class DebuggingOptions {
bool
get
hasDiagnosticPort
=>
diagnosticPort
!=
null
;
/// Return the user specified diagnostic port. If that isn't available,
/// return [
defaultObservatory
Port], or a port close to that one.
/// return [
kDefaultDiagnostic
Port], or a port close to that one.
Future
<
int
>
findBestDiagnosticPort
()
{
return
findPreferredPort
(
diagnosticPort
??
kDefaultDiagnosticPort
);
}
...
...
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