Exit a code block, i.e., roll back to the parent block. Returns: None
(self)
| 7317 | self.current_block_idx = 0 |
| 7318 | |
| 7319 | def _rollback(self): |
| 7320 | """ |
| 7321 | Exit a code block, i.e., roll back to the parent block. |
| 7322 | Returns: |
| 7323 | None |
| 7324 | """ |
| 7325 | self.current_block_idx = self.current_block().parent_idx |
| 7326 | |
| 7327 | def _sync_with_cpp(self): |
| 7328 | """ |
no test coverage detected