MCPcopy Create free account
hub / github.com/KDE/kdevelop / print

Method print

plugins/qmljs/nodejsmodules/jsgenerator.py:176–187  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

174 return self
175
176 def print(self):
177 # Declare the object
178 print('/*\n * %s\n */' % self.fullName())
179 Var.print(self)
180 print('')
181
182 # Declare the members
183 for member in self._members:
184 member.setParentName(self.fullName(), False)
185 member.setName('')
186 member.print()
187 print('')
188
189class Module(object):
190 def __init__(self):

Callers

nothing calls this directly

Calls 4

setParentNameMethod · 0.80
fullNameMethod · 0.45
printMethod · 0.45
setNameMethod · 0.45

Tested by

no test coverage detected