Unverified Commit e9d7bf8c authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Revert "Send nextId in addition to previousId for traversal order" (#14691)

parent 3023fe20
36a9c343b7c5ec361b60c37d154071146daeeea7 f5a4a9378740c3d5996583a9ed1f7e28ff08ee85
...@@ -92,7 +92,6 @@ class SemanticsData extends Diagnosticable { ...@@ -92,7 +92,6 @@ class SemanticsData extends Diagnosticable {
@required this.decreasedValue, @required this.decreasedValue,
@required this.hint, @required this.hint,
@required this.textDirection, @required this.textDirection,
@required this.nextNodeId,
@required this.previousNodeId, @required this.previousNodeId,
@required this.rect, @required this.rect,
@required this.textSelection, @required this.textSelection,
...@@ -152,10 +151,6 @@ class SemanticsData extends Diagnosticable { ...@@ -152,10 +151,6 @@ class SemanticsData extends Diagnosticable {
/// [increasedValue], and [decreasedValue]. /// [increasedValue], and [decreasedValue].
final TextDirection textDirection; final TextDirection textDirection;
/// The index indicating the ID of the next node in the traversal order after
/// this node for the platform's accessibility services.
final int nextNodeId;
/// The index indicating the ID of the previous node in the traversal order before /// The index indicating the ID of the previous node in the traversal order before
/// this node for the platform's accessibility services. /// this node for the platform's accessibility services.
final int previousNodeId; final int previousNodeId;
...@@ -242,7 +237,6 @@ class SemanticsData extends Diagnosticable { ...@@ -242,7 +237,6 @@ class SemanticsData extends Diagnosticable {
properties.add(new StringProperty('decreasedValue', decreasedValue, defaultValue: '')); properties.add(new StringProperty('decreasedValue', decreasedValue, defaultValue: ''));
properties.add(new StringProperty('hint', hint, defaultValue: '')); properties.add(new StringProperty('hint', hint, defaultValue: ''));
properties.add(new EnumProperty<TextDirection>('textDirection', textDirection, defaultValue: null)); properties.add(new EnumProperty<TextDirection>('textDirection', textDirection, defaultValue: null));
properties.add(new IntProperty('nextNodeId', nextNodeId, defaultValue: null));
properties.add(new IntProperty('previousNodeId', previousNodeId, defaultValue: null)); properties.add(new IntProperty('previousNodeId', previousNodeId, defaultValue: null));
if (textSelection?.isValid == true) if (textSelection?.isValid == true)
properties.add(new MessageProperty('textSelection', '[${textSelection.start}, ${textSelection.end}]')); properties.add(new MessageProperty('textSelection', '[${textSelection.start}, ${textSelection.end}]'));
...@@ -264,7 +258,6 @@ class SemanticsData extends Diagnosticable { ...@@ -264,7 +258,6 @@ class SemanticsData extends Diagnosticable {
&& typedOther.decreasedValue == decreasedValue && typedOther.decreasedValue == decreasedValue
&& typedOther.hint == hint && typedOther.hint == hint
&& typedOther.textDirection == textDirection && typedOther.textDirection == textDirection
&& typedOther.nextNodeId == nextNodeId
&& typedOther.previousNodeId == previousNodeId && typedOther.previousNodeId == previousNodeId
&& typedOther.rect == rect && typedOther.rect == rect
&& setEquals(typedOther.tags, tags) && setEquals(typedOther.tags, tags)
...@@ -276,7 +269,7 @@ class SemanticsData extends Diagnosticable { ...@@ -276,7 +269,7 @@ class SemanticsData extends Diagnosticable {
} }
@override @override
int get hashCode => ui.hashValues(flags, actions, label, value, increasedValue, decreasedValue, hint, textDirection, nextNodeId, previousNodeId, rect, tags, textSelection, scrollPosition, scrollExtentMax, scrollExtentMin, transform); int get hashCode => ui.hashValues(flags, actions, label, value, increasedValue, decreasedValue, hint, textDirection, previousNodeId, rect, tags, textSelection, scrollPosition, scrollExtentMax, scrollExtentMin, transform);
} }
class _SemanticsDiagnosticableNode extends DiagnosticableNode<SemanticsNode> { class _SemanticsDiagnosticableNode extends DiagnosticableNode<SemanticsNode> {
...@@ -1074,30 +1067,10 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin { ...@@ -1074,30 +1067,10 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
/// The sort order for ordering the traversal of [SemanticsNode]s by the /// The sort order for ordering the traversal of [SemanticsNode]s by the
/// platform's accessibility services (e.g. VoiceOver on iOS and TalkBack on /// platform's accessibility services (e.g. VoiceOver on iOS and TalkBack on
/// Android). This is used to determine the [nextNodeId] and [previousNodeId] /// Android). This is used to determine the [previousNodeId] during a semantics update.
/// during a semantics update.
SemanticsSortOrder _sortOrder; SemanticsSortOrder _sortOrder;
SemanticsSortOrder get sortOrder => _sortOrder; SemanticsSortOrder get sortOrder => _sortOrder;
/// The ID of the next node in the traversal order after this node.
///
/// Only valid after at least one semantics update has been built.
///
/// This is the value passed to the engine to tell it what the order
/// should be for traversing semantics nodes.
///
/// If this is set to -1, it will indicate that there is no next node to
/// the engine (i.e. this is the last node in the sort order). When it is
/// null, it means that no semantics update has been built yet.
int _nextNodeId;
void _updateNextNodeId(int value) {
if (value == _nextNodeId)
return;
_nextNodeId = value;
_markDirty();
}
int get nextNodeId => _nextNodeId;
/// The ID of the previous node in the traversal order before this node. /// The ID of the previous node in the traversal order before this node.
/// ///
/// Only valid after at least one semantics update has been built. /// Only valid after at least one semantics update has been built.
...@@ -1221,7 +1194,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin { ...@@ -1221,7 +1194,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
String increasedValue = _increasedValue; String increasedValue = _increasedValue;
String decreasedValue = _decreasedValue; String decreasedValue = _decreasedValue;
TextDirection textDirection = _textDirection; TextDirection textDirection = _textDirection;
int nextNodeId = _nextNodeId;
int previousNodeId = _previousNodeId; int previousNodeId = _previousNodeId;
Set<SemanticsTag> mergedTags = tags == null ? null : new Set<SemanticsTag>.from(tags); Set<SemanticsTag> mergedTags = tags == null ? null : new Set<SemanticsTag>.from(tags);
TextSelection textSelection = _textSelection; TextSelection textSelection = _textSelection;
...@@ -1235,7 +1207,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin { ...@@ -1235,7 +1207,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
flags |= node._flags; flags |= node._flags;
actions |= node._actionsAsBits; actions |= node._actionsAsBits;
textDirection ??= node._textDirection; textDirection ??= node._textDirection;
nextNodeId ??= node._nextNodeId;
previousNodeId ??= node._previousNodeId; previousNodeId ??= node._previousNodeId;
textSelection ??= node._textSelection; textSelection ??= node._textSelection;
scrollPosition ??= node._scrollPosition; scrollPosition ??= node._scrollPosition;
...@@ -1276,7 +1247,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin { ...@@ -1276,7 +1247,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
decreasedValue: decreasedValue, decreasedValue: decreasedValue,
hint: hint, hint: hint,
textDirection: textDirection, textDirection: textDirection,
nextNodeId: nextNodeId,
previousNodeId: previousNodeId, previousNodeId: previousNodeId,
rect: rect, rect: rect,
transform: transform, transform: transform,
...@@ -1319,7 +1289,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin { ...@@ -1319,7 +1289,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
increasedValue: data.increasedValue, increasedValue: data.increasedValue,
hint: data.hint, hint: data.hint,
textDirection: data.textDirection, textDirection: data.textDirection,
nextNodeId: data.nextNodeId,
previousNodeId: data.previousNodeId, previousNodeId: data.previousNodeId,
textSelectionBase: data.textSelection != null ? data.textSelection.baseOffset : -1, textSelectionBase: data.textSelection != null ? data.textSelection.baseOffset : -1,
textSelectionExtent: data.textSelection != null ? data.textSelection.extentOffset : -1, textSelectionExtent: data.textSelection != null ? data.textSelection.extentOffset : -1,
...@@ -1394,7 +1363,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin { ...@@ -1394,7 +1363,6 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
properties.add(new StringProperty('decreasedValue', _decreasedValue, defaultValue: '')); properties.add(new StringProperty('decreasedValue', _decreasedValue, defaultValue: ''));
properties.add(new StringProperty('hint', _hint, defaultValue: '')); properties.add(new StringProperty('hint', _hint, defaultValue: ''));
properties.add(new EnumProperty<TextDirection>('textDirection', _textDirection, defaultValue: null)); properties.add(new EnumProperty<TextDirection>('textDirection', _textDirection, defaultValue: null));
properties.add(new IntProperty('nextNodeId', _nextNodeId, defaultValue: null));
properties.add(new IntProperty('previousNodeId', _previousNodeId, defaultValue: null)); properties.add(new IntProperty('previousNodeId', _previousNodeId, defaultValue: null));
properties.add(new DiagnosticsProperty<SemanticsSortOrder>('sortOrder', sortOrder, defaultValue: null)); properties.add(new DiagnosticsProperty<SemanticsSortOrder>('sortOrder', sortOrder, defaultValue: null));
if (_textSelection?.isValid == true) if (_textSelection?.isValid == true)
...@@ -1571,10 +1539,10 @@ class SemanticsOwner extends ChangeNotifier { ...@@ -1571,10 +1539,10 @@ class SemanticsOwner extends ChangeNotifier {
super.dispose(); super.dispose();
} }
// Updates the nextNodeId and previousNodeId IDs on the semantics nodes. These // Updates the previousNodeId IDs on the semantics nodes. These IDs are used
// IDs are used on the platform side to order the nodes for traversal by the // on the platform side to order the nodes for traversal by the accessibility
// accessibility services. If the nextNodeId or previousNodeId for a node // services. If the previousNodeId for a node changes, the node will be marked as
// changes, the node will be marked as dirty. // dirty.
void _updateTraversalOrder() { void _updateTraversalOrder() {
final List<_TraversalSortNode> nodesInSemanticsTraversalOrder = <_TraversalSortNode>[]; final List<_TraversalSortNode> nodesInSemanticsTraversalOrder = <_TraversalSortNode>[];
SemanticsSortOrder currentSortOrder = new SemanticsSortOrder(keys: <SemanticsSortKey>[]); SemanticsSortOrder currentSortOrder = new SemanticsSortOrder(keys: <SemanticsSortKey>[]);
...@@ -1609,20 +1577,12 @@ class SemanticsOwner extends ChangeNotifier { ...@@ -1609,20 +1577,12 @@ class SemanticsOwner extends ChangeNotifier {
return true; return true;
} }
rootSemanticsNode.visitChildren(visitor); rootSemanticsNode.visitChildren(visitor);
if (nodesInSemanticsTraversalOrder.isEmpty)
return;
nodesInSemanticsTraversalOrder.sort(); nodesInSemanticsTraversalOrder.sort();
_TraversalSortNode node = nodesInSemanticsTraversalOrder.removeLast(); int previousNodeId = -1;
node.node._updateNextNodeId(-1); for (_TraversalSortNode node in nodesInSemanticsTraversalOrder) {
while (nodesInSemanticsTraversalOrder.isNotEmpty) { node.node._updatePreviousNodeId(previousNodeId);
final _TraversalSortNode previousNode = nodesInSemanticsTraversalOrder.removeLast(); previousNodeId = node.node.id;
node.node._updatePreviousNodeId(previousNode.node.id);
previousNode.node._updateNextNodeId(node.node.id);
node = previousNode;
} }
node.node._updatePreviousNodeId(-1);
} }
/// Update the semantics using [Window.updateSemantics]. /// Update the semantics using [Window.updateSemantics].
......
...@@ -348,7 +348,7 @@ void main() { ...@@ -348,7 +348,7 @@ void main() {
expect( expect(
minimalProperties.toStringDeep(minLevel: DiagnosticLevel.hidden), minimalProperties.toStringDeep(minLevel: DiagnosticLevel.hidden),
'SemanticsNode#1(owner: null, isMergedIntoParent: false, mergeAllDescendantsIntoThisNode: false, Rect.fromLTRB(0.0, 0.0, 0.0, 0.0), actions: [], isInMutuallyExcusiveGroup: false, isSelected: false, isFocused: false, isButton: false, isTextField: false, invisible, label: "", value: "", increasedValue: "", decreasedValue: "", hint: "", textDirection: null, nextNodeId: null, previousNodeId: null, sortOrder: null, scrollExtentMin: null, scrollPosition: null, scrollExtentMax: null)\n' 'SemanticsNode#1(owner: null, isMergedIntoParent: false, mergeAllDescendantsIntoThisNode: false, Rect.fromLTRB(0.0, 0.0, 0.0, 0.0), actions: [], isInMutuallyExcusiveGroup: false, isSelected: false, isFocused: false, isButton: false, isTextField: false, invisible, label: "", value: "", increasedValue: "", decreasedValue: "", hint: "", textDirection: null, previousNodeId: null, sortOrder: null, scrollExtentMin: null, scrollPosition: null, scrollExtentMax: null)\n'
); );
final SemanticsConfiguration config = new SemanticsConfiguration() final SemanticsConfiguration config = new SemanticsConfiguration()
......
...@@ -417,7 +417,6 @@ void main() { ...@@ -417,7 +417,6 @@ void main() {
rect: TestSemantics.fullScreen, rect: TestSemantics.fullScreen,
actions: allActions.fold(0, (int previous, SemanticsAction action) => previous | action.index), actions: allActions.fold(0, (int previous, SemanticsAction action) => previous | action.index),
previousNodeId: -1, previousNodeId: -1,
nextNodeId: -1,
), ),
], ],
); );
...@@ -614,51 +613,36 @@ void main() { ...@@ -614,51 +613,36 @@ void main() {
expect(semanticsUpdateCount, 1); expect(semanticsUpdateCount, 1);
expect(semantics, hasSemantics( expect(semantics, hasSemantics(
new TestSemantics( new TestSemantics(
id: 0,
children: <TestSemantics>[ children: <TestSemantics>[
new TestSemantics( new TestSemantics(
id: 2,
nextNodeId: 5,
previousNodeId: -1, previousNodeId: -1,
children: <TestSemantics>[ children: <TestSemantics>[
new TestSemantics( new TestSemantics(
id: 3,
label: r'Label 1', label: r'Label 1',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: -1,
previousNodeId: 4, previousNodeId: 4,
), ),
new TestSemantics( new TestSemantics(
id: 4,
label: r'Label 2', label: r'Label 2',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 3,
previousNodeId: 6, previousNodeId: 6,
), ),
new TestSemantics( new TestSemantics(
id: 5,
nextNodeId: 8,
previousNodeId: 2, previousNodeId: 2,
children: <TestSemantics>[ children: <TestSemantics>[
new TestSemantics( new TestSemantics(
id: 6,
label: r'Label 3', label: r'Label 3',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 4,
previousNodeId: 7, previousNodeId: 7,
), ),
new TestSemantics( new TestSemantics(
id: 7,
label: r'Label 4', label: r'Label 4',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 6,
previousNodeId: 8, previousNodeId: 8,
), ),
new TestSemantics( new TestSemantics(
id: 8,
label: r'Label 5', label: r'Label 5',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 7,
previousNodeId: 5, previousNodeId: 5,
), ),
], ],
...@@ -666,7 +650,7 @@ void main() { ...@@ -666,7 +650,7 @@ void main() {
], ],
), ),
], ],
), ignoreTransform: true, ignoreRect: true), ), ignoreTransform: true, ignoreRect: true, ignoreId: true),
); );
semantics.dispose(); semantics.dispose();
}); });
...@@ -729,31 +713,26 @@ void main() { ...@@ -729,31 +713,26 @@ void main() {
new TestSemantics( new TestSemantics(
label: r'Label 1', label: r'Label 1',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: -1,
previousNodeId: 3, previousNodeId: 3,
), ),
new TestSemantics( new TestSemantics(
label: r'Label 2', label: r'Label 2',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 2,
previousNodeId: 4, previousNodeId: 4,
), ),
new TestSemantics( new TestSemantics(
label: r'Label 3', label: r'Label 3',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 3,
previousNodeId: 5, previousNodeId: 5,
), ),
new TestSemantics( new TestSemantics(
label: r'Label 4', label: r'Label 4',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 4,
previousNodeId: 6, previousNodeId: 6,
), ),
new TestSemantics( new TestSemantics(
label: r'Label 5', label: r'Label 5',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 5,
previousNodeId: -1, previousNodeId: -1,
), ),
], ],
...@@ -823,37 +802,31 @@ void main() { ...@@ -823,37 +802,31 @@ void main() {
new TestSemantics( new TestSemantics(
children: <TestSemantics>[ children: <TestSemantics>[
new TestSemantics( new TestSemantics(
nextNodeId: 5,
previousNodeId: -1, previousNodeId: -1,
children: <TestSemantics>[ children: <TestSemantics>[
new TestSemantics( new TestSemantics(
label: r'Label 1', label: r'Label 1',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 7,
previousNodeId: 5, previousNodeId: 5,
), ),
new TestSemantics( new TestSemantics(
label: r'Label 2', label: r'Label 2',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: -1,
previousNodeId: 6, previousNodeId: 6,
), ),
new TestSemantics( new TestSemantics(
label: r'Label 3', label: r'Label 3',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 3,
previousNodeId: 2, previousNodeId: 2,
), ),
new TestSemantics( new TestSemantics(
label: r'Label 4', label: r'Label 4',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 4,
previousNodeId: 7, previousNodeId: 7,
), ),
new TestSemantics( new TestSemantics(
label: r'Label 5', label: r'Label 5',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 6,
previousNodeId: 3, previousNodeId: 3,
), ),
], ],
......
...@@ -43,7 +43,6 @@ class TestSemantics { ...@@ -43,7 +43,6 @@ class TestSemantics {
this.decreasedValue: '', this.decreasedValue: '',
this.hint: '', this.hint: '',
this.textDirection, this.textDirection,
this.nextNodeId,
this.previousNodeId, this.previousNodeId,
this.rect, this.rect,
this.transform, this.transform,
...@@ -72,7 +71,6 @@ class TestSemantics { ...@@ -72,7 +71,6 @@ class TestSemantics {
this.hint: '', this.hint: '',
this.textDirection, this.textDirection,
this.previousNodeId, this.previousNodeId,
this.nextNodeId,
this.transform, this.transform,
this.textSelection, this.textSelection,
this.children: const <TestSemantics>[], this.children: const <TestSemantics>[],
...@@ -108,7 +106,6 @@ class TestSemantics { ...@@ -108,7 +106,6 @@ class TestSemantics {
this.increasedValue: '', this.increasedValue: '',
this.decreasedValue: '', this.decreasedValue: '',
this.textDirection, this.textDirection,
this.nextNodeId,
this.previousNodeId, this.previousNodeId,
this.rect, this.rect,
Matrix4 transform, Matrix4 transform,
...@@ -176,10 +173,6 @@ class TestSemantics { ...@@ -176,10 +173,6 @@ class TestSemantics {
/// is also set. /// is also set.
final TextDirection textDirection; final TextDirection textDirection;
/// The ID of the node that is next in the semantics traversal order after
/// this node.
final int nextNodeId;
/// The ID of the node that is previous in the semantics traversal order before /// The ID of the node that is previous in the semantics traversal order before
/// this node. /// this node.
final int previousNodeId; final int previousNodeId;
...@@ -265,8 +258,6 @@ class TestSemantics { ...@@ -265,8 +258,6 @@ class TestSemantics {
return fail('expected node id $id to have hint "$hint" but found hint "${nodeData.hint}".'); return fail('expected node id $id to have hint "$hint" but found hint "${nodeData.hint}".');
if (textDirection != null && textDirection != nodeData.textDirection) if (textDirection != null && textDirection != nodeData.textDirection)
return fail('expected node id $id to have textDirection "$textDirection" but found "${nodeData.textDirection}".'); return fail('expected node id $id to have textDirection "$textDirection" but found "${nodeData.textDirection}".');
if (nextNodeId != null && nextNodeId != nodeData.nextNodeId)
return fail('expected node id $id to have nextNodeId "$nextNodeId" but found "${nodeData.nextNodeId}".');
if (previousNodeId != null && previousNodeId != nodeData.previousNodeId) if (previousNodeId != null && previousNodeId != nodeData.previousNodeId)
return fail('expected node id $id to have previousNodeId "$previousNodeId" but found "${nodeData.previousNodeId}".'); return fail('expected node id $id to have previousNodeId "$previousNodeId" but found "${nodeData.previousNodeId}".');
if ((nodeData.label != '' || nodeData.value != '' || nodeData.hint != '' || node.increasedValue != '' || node.decreasedValue != '') && nodeData.textDirection == null) if ((nodeData.label != '' || nodeData.value != '' || nodeData.hint != '' || node.increasedValue != '' || node.decreasedValue != '') && nodeData.textDirection == null)
...@@ -320,8 +311,6 @@ class TestSemantics { ...@@ -320,8 +311,6 @@ class TestSemantics {
buf.writeln('$indent hint: \'$hint\','); buf.writeln('$indent hint: \'$hint\',');
if (textDirection != null) if (textDirection != null)
buf.writeln('$indent textDirection: $textDirection,'); buf.writeln('$indent textDirection: $textDirection,');
if (nextNodeId != null)
buf.writeln('$indent nextNodeId: $nextNodeId,');
if (previousNodeId != null) if (previousNodeId != null)
buf.writeln('$indent previousNodeId: $previousNodeId,'); buf.writeln('$indent previousNodeId: $previousNodeId,');
if (textSelection?.isValid == true) if (textSelection?.isValid == true)
...@@ -533,8 +522,6 @@ class SemanticsTester { ...@@ -533,8 +522,6 @@ class SemanticsTester {
buf.writeln(' hint: r\'${node.hint}\','); buf.writeln(' hint: r\'${node.hint}\',');
if (node.textDirection != null) if (node.textDirection != null)
buf.writeln(' textDirection: ${node.textDirection},'); buf.writeln(' textDirection: ${node.textDirection},');
if (node.nextNodeId != null)
buf.writeln(' nextNodeId: ${node.nextNodeId},');
if (node.previousNodeId != null) if (node.previousNodeId != null)
buf.writeln(' previousNodeId: ${node.previousNodeId},'); buf.writeln(' previousNodeId: ${node.previousNodeId},');
......
...@@ -105,17 +105,14 @@ void _tests() { ...@@ -105,17 +105,14 @@ void _tests() {
new TestSemantics( new TestSemantics(
children: <TestSemantics>[ children: <TestSemantics>[
new TestSemantics( new TestSemantics(
nextNodeId: 4,
previousNodeId: -1, previousNodeId: -1,
children: <TestSemantics>[ children: <TestSemantics>[
new TestSemantics( new TestSemantics(
nextNodeId: 2,
previousNodeId: 1, previousNodeId: 1,
children: <TestSemantics>[ children: <TestSemantics>[
new TestSemantics( new TestSemantics(
label: r'Plain text', label: r'Plain text',
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
nextNodeId: 3,
previousNodeId: 4, previousNodeId: 4,
), ),
new TestSemantics( new TestSemantics(
...@@ -127,7 +124,6 @@ void _tests() { ...@@ -127,7 +124,6 @@ void _tests() {
decreasedValue: r'test-decreasedValue', decreasedValue: r'test-decreasedValue',
hint: r'test-hint', hint: r'test-hint',
textDirection: TextDirection.rtl, textDirection: TextDirection.rtl,
nextNodeId: -1,
previousNodeId: 2, previousNodeId: 2,
), ),
], ],
......
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