(self, visitor: TypeVisitor[T])
| 2059 | return None |
| 2060 | |
| 2061 | def accept(self, visitor: TypeVisitor[T]) -> T: |
| 2062 | return visitor.visit_parameters(self) |
| 2063 | |
| 2064 | def serialize(self) -> JsonDict: |
| 2065 | return { |
nothing calls this directly
no test coverage detected