(self)
| 80 | ) |
| 81 | |
| 82 | def valueAfterAssignation(self): |
| 83 | # Call it, so that its parameters have the correct type |
| 84 | return '%s(%s);' % ( |
| 85 | self.fullName(), |
| 86 | ', '.join([arg[1] for arg in self._args]) |
| 87 | ) |
| 88 | |
| 89 | class Var(Member): |
| 90 | def __init__(self, type, name): |