(self, match_list)
| 158 | return repr(self.text) |
| 159 | |
| 160 | def should(self, match_list): |
| 161 | if self.is_root(): |
| 162 | return False |
| 163 | for i in match_list: |
| 164 | if i in self.text: |
| 165 | return True |
| 166 | return False |
| 167 | |
| 168 | def sort_nodes(self): |
| 169 | if not self.is_root(): |