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
579d2fba
Unverified
Commit
579d2fba
authored
Jul 13, 2018
by
Jonah Williams
Committed by
GitHub
Jul 13, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Roll engine to c5a63d (#19288)
parent
7ebf2728
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
3 deletions
+10
-3
engine.version
bin/internal/engine.version
+1
-1
dartdoc.dart
dev/tools/dartdoc.dart
+1
-0
custom_painter_test.dart
packages/flutter/test/widgets/custom_painter_test.dart
+2
-1
semantics_test.dart
packages/flutter/test/widgets/semantics_test.dart
+2
-1
matchers.dart
packages/flutter_test/lib/src/matchers.dart
+3
-0
matchers_test.dart
packages/flutter_test/test/matchers_test.dart
+1
-0
No files found.
bin/internal/engine.version
View file @
579d2fba
fed2ea458ed49088d33eddabc546ba56d600c717
c5a63d28bf3735569c8187753bc490d8351a8363
dev/tools/dartdoc.dart
View file @
579d2fba
...
...
@@ -307,6 +307,7 @@ List<FileSystemEntity> findPackages() {
// TODO(ianh): Use a real YAML parser here
return
!
pubspec
.
readAsStringSync
().
contains
(
'nodoc: true'
);
})
.
cast
<
Directory
>()
.
toList
();
}
...
...
packages/flutter/test/widgets/custom_painter_test.dart
View file @
579d2fba
...
...
@@ -349,7 +349,8 @@ void _defineTests() {
));
final
Set
<
SemanticsAction
>
allActions
=
SemanticsAction
.
values
.
values
.
toSet
()
..
remove
(
SemanticsAction
.
showOnScreen
);
// showOnScreen is non user-exposed.
..
remove
(
SemanticsAction
.
customAction
)
// customAction is not user-exposed.
..
remove
(
SemanticsAction
.
showOnScreen
);
// showOnScreen is not user-exposed.
const
int
expectedId
=
2
;
final
TestSemantics
expectedSemantics
=
new
TestSemantics
.
root
(
...
...
packages/flutter/test/widgets/semantics_test.dart
View file @
579d2fba
...
...
@@ -415,7 +415,8 @@ void main() {
);
final
Set
<
SemanticsAction
>
allActions
=
SemanticsAction
.
values
.
values
.
toSet
()
..
remove
(
SemanticsAction
.
showOnScreen
);
// showOnScreen is non user-exposed.
..
remove
(
SemanticsAction
.
customAction
)
// customAction is not user-exposed.
..
remove
(
SemanticsAction
.
showOnScreen
);
// showOnScreen is not user-exposed.
const
int
expectedId
=
1
;
final
TestSemantics
expectedSemantics
=
new
TestSemantics
.
root
(
...
...
packages/flutter_test/lib/src/matchers.dart
View file @
579d2fba
...
...
@@ -339,6 +339,7 @@ Matcher matchesSemanticsData({
bool
hasPasteAction
=
false
,
bool
hasDidGainAccessibilityFocusAction
=
false
,
bool
hasDidLoseAccessibilityFocusAction
=
false
,
bool
hasCustomAction
=
false
,
})
{
final
List
<
SemanticsFlag
>
flags
=
<
SemanticsFlag
>[];
if
(
hasCheckedState
)
...
...
@@ -405,6 +406,8 @@ Matcher matchesSemanticsData({
actions
.
add
(
SemanticsAction
.
didGainAccessibilityFocus
);
if
(
hasDidLoseAccessibilityFocusAction
)
actions
.
add
(
SemanticsAction
.
didLoseAccessibilityFocus
);
if
(
hasCustomAction
)
actions
.
add
(
SemanticsAction
.
customAction
);
return
new
_MatchesSemanticsData
(
label:
label
,
...
...
packages/flutter_test/test/matchers_test.dart
View file @
579d2fba
...
...
@@ -472,6 +472,7 @@ void main() {
hasPasteAction:
true
,
hasDidGainAccessibilityFocusAction:
true
,
hasDidLoseAccessibilityFocusAction:
true
,
hasCustomAction:
true
,
));
});
});
...
...
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