(&mut self)
| 309 | } |
| 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. */ |
no test coverage detected