(self)
| 426 | return False |
| 427 | |
| 428 | def get_src(self): |
| 429 | cur = self |
| 430 | x = self.ctx.srcnode |
| 431 | y = self.ctx.bldnode |
| 432 | lst = [] |
| 433 | while cur.parent: |
| 434 | if cur is y: |
| 435 | lst.reverse() |
| 436 | return x.make_node(lst) |
| 437 | if cur is x: |
| 438 | return self |
| 439 | lst.append(cur.name) |
| 440 | cur = cur.parent |
| 441 | return self |
| 442 | |
| 443 | def get_bld(self): |
| 444 | cur = self |
no test coverage detected