(self, type: Type)
| 789 | return result |
| 790 | |
| 791 | def type(self, type: Type) -> Type: |
| 792 | # Override this method to transform types. |
| 793 | return type |
| 794 | |
| 795 | def optional_type(self, type: Type | None) -> Type | None: |
| 796 | if type: |
no outgoing calls
no test coverage detected