(self, typ: RType)
| 645 | # Otherwise assume it's an unboxed, pointerless value and do nothing. |
| 646 | |
| 647 | def pretty_name(self, typ: RType) -> str: |
| 648 | value_type = optional_value_type(typ) |
| 649 | if value_type is not None: |
| 650 | return "%s or None" % self.pretty_name(value_type) |
| 651 | return str(typ) |
| 652 | |
| 653 | def emit_cast( |
| 654 | self, |
no test coverage detected