(
&self,
ctx: &mut BodyContext<W>,
block: &Block,
ret_kind: ReturnKind,
last_expr: &str,
scope: StableSet<BindingId>,
)
| 657 | } |
| 658 | |
| 659 | fn emit_block<W: Write>( |
| 660 | &self, |
| 661 | ctx: &mut BodyContext<W>, |
| 662 | block: &Block, |
| 663 | ret_kind: ReturnKind, |
| 664 | last_expr: &str, |
| 665 | scope: StableSet<BindingId>, |
| 666 | ) -> std::fmt::Result { |
| 667 | ctx.begin_block()?; |
| 668 | self.emit_block_contents(ctx, block, ret_kind, last_expr, scope) |
| 669 | } |
| 670 | |
| 671 | fn emit_block_contents<W: Write>( |
| 672 | &self, |
no test coverage detected