Unverified Commit 67ed7807 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Add new line after "see also" (#12850)

parent c027aa15
...@@ -328,6 +328,7 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin { ...@@ -328,6 +328,7 @@ class SemanticsNode extends AbstractNode with DiagnosticableTreeMixin {
/// decedent nodes are merged into this node. /// decedent nodes are merged into this node.
/// ///
/// See also: /// See also:
///
/// * [isMergedIntoParent] /// * [isMergedIntoParent]
/// * [mergeAllDescendantsIntoThisNode] /// * [mergeAllDescendantsIntoThisNode]
bool get isPartOfNodeMerging => mergeAllDescendantsIntoThisNode || isMergedIntoParent; bool get isPartOfNodeMerging => mergeAllDescendantsIntoThisNode || isMergedIntoParent;
...@@ -1092,6 +1093,7 @@ class SemanticsConfiguration { ...@@ -1092,6 +1093,7 @@ class SemanticsConfiguration {
/// would like to contribute to the semantics tree. /// would like to contribute to the semantics tree.
/// ///
/// See also: /// See also:
///
/// * [addAction] to add an action. /// * [addAction] to add an action.
final Map<SemanticsAction, VoidCallback> _actions = <SemanticsAction, VoidCallback>{}; final Map<SemanticsAction, VoidCallback> _actions = <SemanticsAction, VoidCallback>{};
...@@ -1111,6 +1113,7 @@ class SemanticsConfiguration { ...@@ -1111,6 +1113,7 @@ class SemanticsConfiguration {
/// registered. /// registered.
/// ///
/// See also: /// See also:
///
/// * [addAction] to add an action. /// * [addAction] to add an action.
VoidCallback getActionHandler(SemanticsAction action) => _actions[action]; VoidCallback getActionHandler(SemanticsAction action) => _actions[action];
...@@ -1153,6 +1156,7 @@ class SemanticsConfiguration { ...@@ -1153,6 +1156,7 @@ class SemanticsConfiguration {
/// The reading direction is given by [textDirection]. /// The reading direction is given by [textDirection].
/// ///
/// See also: /// See also:
///
/// * [decreasedValue], describes what [value] will be after performing /// * [decreasedValue], describes what [value] will be after performing
/// [SemanticsAction.decrease] /// [SemanticsAction.decrease]
/// * [increasedValue], describes what [value] will be after performing /// * [increasedValue], describes what [value] will be after performing
...@@ -1256,6 +1260,7 @@ class SemanticsConfiguration { ...@@ -1256,6 +1260,7 @@ class SemanticsConfiguration {
/// [SemanticsNode]s. /// [SemanticsNode]s.
/// ///
/// See also: /// See also:
///
/// * [addTagForChildren] to add a tag and for more information about their /// * [addTagForChildren] to add a tag and for more information about their
/// usage. /// usage.
Iterable<SemanticsTag> get tagsForChildren => _tagsForChildren; Iterable<SemanticsTag> get tagsForChildren => _tagsForChildren;
...@@ -1273,6 +1278,7 @@ class SemanticsConfiguration { ...@@ -1273,6 +1278,7 @@ class SemanticsConfiguration {
/// can use this information to determine the shape of the semantics tree. /// can use this information to determine the shape of the semantics tree.
/// ///
/// See also: /// See also:
///
/// * [RenderSemanticsGestureHandler.excludeFromScrolling] for an example of /// * [RenderSemanticsGestureHandler.excludeFromScrolling] for an example of
/// how tags are used. /// how tags are used.
void addTagForChildren(SemanticsTag tag) { void addTagForChildren(SemanticsTag tag) {
......
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