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
9c77e8e8
Commit
9c77e8e8
authored
May 09, 2019
by
Sam Rawlins
Committed by
Jonah Williams
May 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing return statements on function literals (#31825)
parent
66a67263
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
5 deletions
+10
-5
key_data.dart
dev/tools/gen_keycodes/lib/key_data.dart
+5
-4
resident_runner.dart
packages/flutter_tools/lib/src/resident_runner.dart
+1
-1
run_hot.dart
packages/flutter_tools/lib/src/run_hot.dart
+1
-0
test_driver.dart
packages/flutter_tools/test/integration/test_driver.dart
+2
-0
ios_workflow_test.dart
packages/flutter_tools/test/ios/ios_workflow_test.dart
+1
-0
No files found.
dev/tools/gen_keycodes/lib/key_data.dart
View file @
9c77e8e8
...
...
@@ -162,6 +162,7 @@ class KeyData {
final
String
androidName
=
match
.
group
(
2
);
result
[
androidName
]
??=
<
int
>[];
result
[
androidName
].
add
(
int
.
parse
(
match
.
group
(
1
)));
return
null
;
});
return
result
;
...
...
@@ -178,9 +179,9 @@ class KeyData {
headerFile
=
headerFile
.
replaceAllMapped
(
enumBlock
,
(
Match
match
)
=>
match
.
group
(
1
));
final
RegExp
enumEntry
=
RegExp
(
r''
'AKEYCODE_([A-Z0-9_]+)
\
s*=
\
s*([0-9]+),?'''
);
final
Map
<
String
,
int
>
result
=
<
String
,
int
>{};
headerFile
.
replaceAllMapped
(
enumEntry
,
(
Match
match
)
{
for
(
Match
match
in
enumEntry
.
allMatches
(
headerFile
)
)
{
result
[
match
.
group
(
1
)]
=
int
.
parse
(
match
.
group
(
2
));
}
);
}
return
result
;
}
...
...
@@ -193,9 +194,9 @@ class KeyData {
// Only get the KEY definitions, ignore the rest (mouse, joystick, etc).
final
RegExp
enumEntry
=
RegExp
(
r''
'define GLFW_KEY_([A-Z0-9_]+)
\
s*([A-Z0-9_]+),?'''
);
final
Map
<
String
,
dynamic
>
replaced
=
<
String
,
dynamic
>{};
headerFile
.
replaceAllMapped
(
enumEntry
,
(
Match
match
)
{
for
(
Match
match
in
enumEntry
.
allMatches
(
headerFile
)
)
{
replaced
[
match
.
group
(
1
)]
=
int
.
tryParse
(
match
.
group
(
2
))
??
match
.
group
(
2
).
replaceAll
(
'GLFW_KEY_'
,
''
);
}
);
}
final
Map
<
String
,
int
>
result
=
<
String
,
int
>{};
replaced
.
forEach
((
String
key
,
dynamic
value
)
{
// Some definition values point to other definitions (e.g #define GLFW_KEY_LAST GLFW_KEY_MENU).
...
...
packages/flutter_tools/lib/src/resident_runner.dart
View file @
9c77e8e8
...
...
@@ -182,7 +182,7 @@ class FlutterDevice {
// The flutterExit message only returns if it fails, so just wait a few
// seconds then assume it worked.
// TODO(ianh): We should make this return once the VM service disconnects.
await
Future
.
wait
(
futures
).
timeout
(
const
Duration
(
seconds:
2
),
onTimeout:
()
{
}
);
await
Future
.
wait
(
futures
).
timeout
(
const
Duration
(
seconds:
2
),
onTimeout:
()
=>
<
void
>[]
);
}
Future
<
Uri
>
setupDevFS
(
...
...
packages/flutter_tools/lib/src/run_hot.dart
View file @
9c77e8e8
...
...
@@ -446,6 +446,7 @@ class HotRunner extends ResidentRunner {
// Resume the isolate so that it can be killed by the embedder.
return
view
.
uiIsolate
.
resume
();
}
return
null
;
},
).
whenComplete
(
()
{
completer
.
complete
(
null
);
},
...
...
packages/flutter_tools/test/integration/test_driver.dart
View file @
9c77e8e8
...
...
@@ -366,6 +366,7 @@ abstract class FlutterTestDriver {
_debugPrint
(
'
$task
...'
);
return
callback
()..
timeout
(
timeout
,
onTimeout:
()
{
_debugPrint
(
'
$task
is taking longer than usual...'
);
return
null
;
});
}
...
...
@@ -388,6 +389,7 @@ abstract class FlutterTestDriver {
print
(
messages
.
toString
());
timeoutExpired
=
true
;
print
(
'
$task
is taking longer than usual...'
);
return
null
;
});
return
future
.
catchError
((
dynamic
error
)
{
...
...
packages/flutter_tools/test/ios/ios_workflow_test.dart
View file @
9c77e8e8
...
...
@@ -187,6 +187,7 @@ Show information about a connected device.
-x, --xml output information as xml plist instead of key/value pairs
-h, --help prints usage information
'''
);
return
null
;
});
final
IOSWorkflowTestTarget
workflow
=
IOSWorkflowTestTarget
();
final
ValidationResult
result
=
await
workflow
.
validate
();
...
...
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