(self)
| 24 | self.post_condition = post_condition |
| 25 | |
| 26 | def __str__(self): |
| 27 | path = XPathExprOrig.__str__(self) |
| 28 | if self.post_condition: |
| 29 | path = '%s[%s]' % (path, self.post_condition) |
| 30 | return path |
| 31 | |
| 32 | def join(self, combiner, other, |
| 33 | closing_combiner=None, has_inner_condition=False): |
nothing calls this directly
no outgoing calls
no test coverage detected