(self)
| 30 | return self._full_name |
| 31 | |
| 32 | def print(self): |
| 33 | print('%s = %s;' % (self.fullName(), self.valueToAssign())) |
| 34 | |
| 35 | if self.valueAfterAssignation() != '': |
| 36 | print(self.valueAfterAssignation()) |
| 37 | |
| 38 | def valueToAssign(self): |
| 39 | """ |
nothing calls this directly
no test coverage detected