String ending definition of a named dictionary
(self)
| 27 | return f'exports.{name} = {{' |
| 28 | |
| 29 | def endDict(self): |
| 30 | """ String ending definition of a named dictionary""" |
| 31 | return '}' |
| 32 | |
| 33 | def writeDict(self, dict, name, printValues = True): |
| 34 | """Write dictionary as a JavaScript object with the given name. |