(code, id, x, y, ticks)
| 341 | this.onTouchSelect(code, this.x, this.y); |
| 342 | } |
| 343 | onTouchBegan(code, id, x, y, ticks) { |
| 344 | code.captureTouch(id, x, y, ticks); |
| 345 | this.onTouchBeganMode(code, id, x, y, ticks, CHAR_MODE); |
| 346 | } |
| 347 | onTouchBeganMode(code, id, x, y, ticks, mode) { |
| 348 | code.focus(); |
| 349 | if ((ticks - this.touchTicks < 1000) && (this.touchX == x) && (this.touchY == y)) { |
nothing calls this directly
no test coverage detected