(self, path='', element='*', condition='', star_prefix=False)
| 11 | class XPathExpr(XPathExprOrig): |
| 12 | |
| 13 | def __init__(self, path='', element='*', condition='', star_prefix=False): |
| 14 | self.path = path |
| 15 | self.element = element |
| 16 | self.condition = condition |
| 17 | self.post_condition = None |
| 18 | |
| 19 | def add_post_condition(self, post_condition): |
| 20 | if self.post_condition: |
nothing calls this directly
no outgoing calls
no test coverage detected