(self)
| 323 | } |
| 324 | |
| 325 | def getDetailsForDisplay(self): |
| 326 | result = self.getDetails() |
| 327 | |
| 328 | if self.future_spec is not None: |
| 329 | result["code_flags"] = ",".join(self.future_spec.asFlags()) |
| 330 | |
| 331 | return result |
| 332 | |
| 333 | def getCompilationMode(self): |
| 334 | return self.mode |
nothing calls this directly
no test coverage detected