Unverified Commit f68a6763 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Workaround for exhaustivness bug in dart2js (#123242)

Workaround for exhaustiveness bug in dart2js
parent fda9ecfe
...@@ -444,6 +444,9 @@ abstract class FocusTraversalPolicy with Diagnosticable { ...@@ -444,6 +444,9 @@ abstract class FocusTraversalPolicy with Diagnosticable {
case TraversalEdgeBehavior.closedLoop: case TraversalEdgeBehavior.closedLoop:
_focusAndEnsureVisible(sortedNodes.first, alignmentPolicy: ScrollPositionAlignmentPolicy.keepVisibleAtEnd); _focusAndEnsureVisible(sortedNodes.first, alignmentPolicy: ScrollPositionAlignmentPolicy.keepVisibleAtEnd);
return true; return true;
// TODO(goderbauer): Remove this hack once exhaustiveness bug is fixed, https://github.com/flutter/flutter/issues/123243.
default: // ignore: no_default_cases
throw UnsupportedError('unreachable');
} }
} }
if (!forward && focusedChild == sortedNodes.first) { if (!forward && focusedChild == sortedNodes.first) {
...@@ -454,6 +457,9 @@ abstract class FocusTraversalPolicy with Diagnosticable { ...@@ -454,6 +457,9 @@ abstract class FocusTraversalPolicy with Diagnosticable {
case TraversalEdgeBehavior.closedLoop: case TraversalEdgeBehavior.closedLoop:
_focusAndEnsureVisible(sortedNodes.last, alignmentPolicy: ScrollPositionAlignmentPolicy.keepVisibleAtStart); _focusAndEnsureVisible(sortedNodes.last, alignmentPolicy: ScrollPositionAlignmentPolicy.keepVisibleAtStart);
return true; return true;
// TODO(goderbauer): Remove this hack once exhaustiveness bug is fixed, https://github.com/flutter/flutter/issues/123243.
default: // ignore: no_default_cases
throw UnsupportedError('unreachable');
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment