Adds a space after ctype for non-pointers.
(self, rtype: RType)
| 362 | return rtype._ctype |
| 363 | |
| 364 | def ctype_spaced(self, rtype: RType) -> str: |
| 365 | """Adds a space after ctype for non-pointers.""" |
| 366 | ctype = self.ctype(rtype) |
| 367 | if ctype[-1] == "*": |
| 368 | return ctype |
| 369 | else: |
| 370 | return ctype + " " |
| 371 | |
| 372 | def set_undefined_value(self, target: str, rtype: RType) -> None: |
| 373 | if isinstance(rtype, RVec): |
no test coverage detected