@@ -512,20 +512,20 @@ export class CdkTree<T, K = T> implements AfterContentChecked, CollectionViewer,
512512 }
513513
514514 /**
515- * For the given node, determine the size of the parent's child set.
516- *
517- * This is intended to be used for `aria-setsize`.
518- */
515+ * For the given node, determine the size of the parent's child set.
516+ *
517+ * This is intended to be used for `aria-setsize`.
518+ */
519519 _getSetSize ( dataNode : T ) {
520520 const group = this . _getNodeGroup ( dataNode ) ;
521521 return group . length ;
522522 }
523523
524524 /**
525- * For the given node, determine the index (starting from 1) of the node in its parent's child set.
526- *
527- * This is intended to be used for `aria-posinset`.
528- */
525+ * For the given node, determine the index (starting from 1) of the node in its parent's child set.
526+ *
527+ * This is intended to be used for `aria-posinset`.
528+ */
529529 _getPositionInSet ( dataNode : T ) {
530530 const group = this . _getNodeGroup ( dataNode ) ;
531531 return group . indexOf ( dataNode ) + 1 ;
@@ -704,19 +704,19 @@ export class CdkTreeNode<T, K = T> implements FocusableOption, OnDestroy, OnInit
704704 }
705705
706706 /**
707- * Determines the size of this node's parent's child set.
708- *
709- * This is intended to be used for `aria-setsize`.
710- */
707+ * Determines the size of this node's parent's child set.
708+ *
709+ * This is intended to be used for `aria-setsize`.
710+ */
711711 _getSetSize ( ) : number {
712712 return this . _tree . _getSetSize ( this . _data ) ;
713713 }
714714
715715 /**
716- * Determines the index (starting from 1) of this node in its parent's child set.
717- *
718- * This is intended to be used for `aria-posinset`.
719- */
716+ * Determines the index (starting from 1) of this node in its parent's child set.
717+ *
718+ * This is intended to be used for `aria-posinset`.
719+ */
720720 _getPositionInSet ( ) : number {
721721 return this . _tree . _getPositionInSet ( this . _data ) ;
722722 }
0 commit comments