(self)
| 129 | self.other_names.append(name) |
| 130 | |
| 131 | def FullName(self): |
| 132 | if self.other_names is None: |
| 133 | return self.name |
| 134 | self.other_names.sort() |
| 135 | return "%s (aka %s)" % (self.name, ", ".join(self.other_names)) |
| 136 | |
| 137 | def IsUsed(self): |
| 138 | return self.self_ticks > 0 or self.callee_ticks is not None |
no test coverage detected