(&self)
| 947 | } |
| 948 | |
| 949 | pub fn active_descendant(&self) -> Option<Node<'a>> { |
| 950 | self.state |
| 951 | .data |
| 952 | .active_descendant() |
| 953 | .and_then(|id| self.tree_state.node_by_id(self.id.with_same_tree(id))) |
| 954 | } |
| 955 | |
| 956 | pub fn raw_text_selection(&self) -> Option<&TextSelection> { |
| 957 | self.data().text_selection() |
no test coverage detected