(self, options: Options)
| 232 | return self.accept(mypy.strconv.StrConv(options=Options())) |
| 233 | |
| 234 | def str_with_options(self, options: Options) -> str: |
| 235 | a = self.accept(mypy.strconv.StrConv(options=options)) |
| 236 | assert a |
| 237 | return a |
| 238 | |
| 239 | def accept(self, visitor: NodeVisitor[T]) -> T: |
| 240 | raise RuntimeError("Not implemented", type(self)) |