(self, stmts: list[ast3.stmt])
| 597 | b.column = new_first.column |
| 598 | |
| 599 | def as_block(self, stmts: list[ast3.stmt]) -> Block | None: |
| 600 | b = None |
| 601 | if stmts: |
| 602 | b = Block(self.fix_function_overloads(self.translate_stmt_list(stmts))) |
| 603 | self.set_block_lines(b, stmts) |
| 604 | return b |
| 605 | |
| 606 | def as_required_block( |
| 607 | self, stmts: list[ast3.stmt], *, can_strip: bool = False, is_coroutine: bool = False |
no test coverage detected