(self)
| 407 | return graph |
| 408 | |
| 409 | def getSourceCode(self): |
| 410 | if self.source_code is not None: |
| 411 | return self.source_code |
| 412 | else: |
| 413 | # This should of course give same result as before. |
| 414 | return readSourceCodeFromFilename( |
| 415 | module_name=self.getFullName(), |
| 416 | source_filename=self.getCompileTimeFilename(), |
| 417 | ) |
| 418 | |
| 419 | def setSourceCode(self, code): |
| 420 | self.source_code = code |
no test coverage detected