(code, id, x, y, ticks)
| 321 | this.onTouchSelect(code, this.x, this.y); |
| 322 | } |
| 323 | onTouchBegan(code, id, x, y, ticks) { |
| 324 | code.captureTouch(id, x, y, ticks); |
| 325 | this.captured = code; |
| 326 | this.onTouchBeganMode(code, id, x, y, ticks, CHAR_MODE); |
| 327 | } |
| 328 | onTouchBeganMode(code, id, x, y, ticks, mode) { |
| 329 | code.focus(); |
| 330 | if ((ticks - this.touchTicks < 1000) && (this.touchX == x) && (this.touchY == y)) { |
nothing calls this directly
no test coverage detected