Get the next position that a backwards traversal will move to, but do not move this cursor.
(&self)
| 309 | /// Get the next position that a backwards traversal will move to, but do |
| 310 | /// not move this cursor. |
| 311 | fn prev_position(&self) -> CursorPosition { |
| 312 | self.prev_inst_position() |
| 313 | .unwrap_or_else(|| self.prev_block_position()) |
| 314 | } |
| 315 | |
| 316 | /// Get the position that a `cursor.next_block()` call would move this |
| 317 | /// cursor to, but do not update this cursor's position. |
nothing calls this directly
no test coverage detected