@@ -636,20 +636,20 @@ export class CdkTree<T, K = T> implements AfterContentChecked, CollectionViewer,
636636 }
637637
638638 /**
639- * For the given node, determine the size of the parent's child set.
640- *
641- * This is intended to be used for `aria-setsize`.
642- */
639+ * For the given node, determine the size of the parent's child set.
640+ *
641+ * This is intended to be used for `aria-setsize`.
642+ */
643643 _getSetSize ( dataNode : T ) {
644644 const group = this . _getNodeGroup ( dataNode ) ;
645645 return group . length ;
646646 }
647647
648648 /**
649- * For the given node, determine the index (starting from 1) of the node in its parent's child set.
650- *
651- * This is intended to be used for `aria-posinset`.
652- */
649+ * For the given node, determine the index (starting from 1) of the node in its parent's child set.
650+ *
651+ * This is intended to be used for `aria-posinset`.
652+ */
653653 _getPositionInSet ( dataNode : T ) {
654654 const group = this . _getNodeGroup ( dataNode ) ;
655655 return group . indexOf ( dataNode ) + 1 ;
@@ -905,19 +905,19 @@ export class CdkTreeNode<T, K = T> implements FocusableOption, OnDestroy, OnInit
905905 }
906906
907907 /**
908- * Determines the size of this node's parent's child set.
909- *
910- * This is intended to be used for `aria-setsize`.
911- */
908+ * Determines the size of this node's parent's child set.
909+ *
910+ * This is intended to be used for `aria-setsize`.
911+ */
912912 _getSetSize ( ) : number {
913913 return this . _tree . _getSetSize ( this . _data ) ;
914914 }
915915
916916 /**
917- * Determines the index (starting from 1) of this node in its parent's child set.
918- *
919- * This is intended to be used for `aria-posinset`.
920- */
917+ * Determines the index (starting from 1) of this node in its parent's child set.
918+ *
919+ * This is intended to be used for `aria-posinset`.
920+ */
921921 _getPositionInSet ( ) : number {
922922 return this . _tree . _getPositionInSet ( this . _data ) ;
923923 }
0 commit comments