Roll engine to 3405e23a32af4ea3655e5d1a78955066b2573331 (#16755)

* update engine version, ignore scopesRoute and namesRoute flags until framework support is added
This commit is contained in:
Jonah Williams 2018-04-19 12:35:24 -07:00 committed by GitHub
parent 7b163c7c0b
commit eb1fd78601
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 4 deletions

View File

@ -1 +1 @@
3cc8d82895eaaddc52df166ceb0e5d7c3cc40588
3405e23a32af4ea3655e5d1a78955066b2573331

View File

@ -421,6 +421,10 @@ void _defineTests() {
),
));
// TODO(jonahwilliams): remove when rolling edge semantic support for framework.
final List<SemanticsFlag> flags = SemanticsFlag.values.values
.where((SemanticsFlag flag) => flag != SemanticsFlag.scopesRoute && flag != SemanticsFlag.namesRoute)
.toList();
final TestSemantics expectedSemantics = new TestSemantics.root(
children: <TestSemantics>[
new TestSemantics.rootChild(
@ -429,7 +433,7 @@ void _defineTests() {
new TestSemantics.rootChild(
id: 2,
rect: TestSemantics.fullScreen,
flags: SemanticsFlag.values.values.toList(),
flags: flags,
),
]
),

View File

@ -473,12 +473,15 @@ void main() {
obscured: true,
)
);
// TODO(jonahwilliams): remove when adding engine support for edge semantics
final List<SemanticsFlag> flags = SemanticsFlag.values.values
.where((SemanticsFlag flag) => flag != SemanticsFlag.scopesRoute && flag != SemanticsFlag.namesRoute)
.toList();
final TestSemantics expectedSemantics = new TestSemantics.root(
children: <TestSemantics>[
new TestSemantics.rootChild(
rect: TestSemantics.fullScreen,
flags: SemanticsFlag.values.values.toList(),
flags: flags,
),
],
);