(&mut self)
| 310 | |
| 311 | pub(super) fn compile_block(&mut self) { self.compile_block_inner(false); } |
| 312 | pub(super) fn compile_block_body(&mut self) { self.compile_block_inner(true); } |
| 313 | |
| 314 | /* Compiles Indent/Dedent block; is_body=true stops after ReturnValue to skip dead code. */ |
| 315 | fn compile_block_inner(&mut self, is_body: bool) { |
no test coverage detected