Get the next position that a forwards traversal will move to, but do not move this cursor.
(&self)
| 302 | /// Get the next position that a forwards traversal will move to, but do not |
| 303 | /// move this cursor. |
| 304 | fn next_position(&self) -> CursorPosition { |
| 305 | self.next_inst_position() |
| 306 | .unwrap_or_else(|| self.next_block_position()) |
| 307 | } |
| 308 | |
| 309 | /// Get the next position that a backwards traversal will move to, but do |
| 310 | /// not move this cursor. |
nothing calls this directly
no test coverage detected