@@ -639,20 +639,20 @@ export class CdkTree<T, K = T> implements AfterContentChecked, CollectionViewer,
639639 }
640640
641641 /**
642- * For the given node, determine the size of the parent's child set.
643- *
644- * This is intended to be used for `aria-setsize`.
645- */
642+ * For the given node, determine the size of the parent's child set.
643+ *
644+ * This is intended to be used for `aria-setsize`.
645+ */
646646 _getSetSize ( dataNode : T ) {
647647 const group = this . _getNodeGroup ( dataNode ) ;
648648 return group . length ;
649649 }
650650
651651 /**
652- * For the given node, determine the index (starting from 1) of the node in its parent's child set.
653- *
654- * This is intended to be used for `aria-posinset`.
655- */
652+ * For the given node, determine the index (starting from 1) of the node in its parent's child set.
653+ *
654+ * This is intended to be used for `aria-posinset`.
655+ */
656656 _getPositionInSet ( dataNode : T ) {
657657 const group = this . _getNodeGroup ( dataNode ) ;
658658 return group . indexOf ( dataNode ) + 1 ;
@@ -860,19 +860,19 @@ export class CdkTreeNode<T, K = T> implements FocusableOption, OnDestroy, OnInit
860860 }
861861
862862 /**
863- * Determines the size of this node's parent's child set.
864- *
865- * This is intended to be used for `aria-setsize`.
866- */
863+ * Determines the size of this node's parent's child set.
864+ *
865+ * This is intended to be used for `aria-setsize`.
866+ */
867867 _getSetSize ( ) : number {
868868 return this . _tree . _getSetSize ( this . _data ) ;
869869 }
870870
871871 /**
872- * Determines the index (starting from 1) of this node in its parent's child set.
873- *
874- * This is intended to be used for `aria-posinset`.
875- */
872+ * Determines the index (starting from 1) of this node in its parent's child set.
873+ *
874+ * This is intended to be used for `aria-posinset`.
875+ */
876876 _getPositionInSet ( ) : number {
877877 return this . _tree . _getPositionInSet ( this . _data ) ;
878878 }
0 commit comments