(self)
| 96 | self._type = type |
| 97 | |
| 98 | def print(self): |
| 99 | if self.name() != '': |
| 100 | # This variable is not a member, declare it using 'var' |
| 101 | print('var %s = %s;' % (self.name(), self.valueToAssign())) |
| 102 | else: |
| 103 | Member.print(self) |
| 104 | |
| 105 | def valueToAssign(self): |
| 106 | return self._type |
nothing calls this directly
no test coverage detected