()
| 898 | } |
| 899 | |
| 900 | past_border_y() { |
| 901 | if (this.y_direction == 1) { |
| 902 | return this.prev_y + 1 < this.row_limits[this.group_iter]; |
| 903 | } else { |
| 904 | return this.prev_y - 1 > this.row_limits[this.group_iter - 1] - 1; |
| 905 | } |
| 906 | } |
| 907 | |
| 908 | past_border_x() { |
| 909 | if (this.x_direction == 1) { |
no outgoing calls
no test coverage detected