(touch: Touch)
| 141 | } |
| 142 | |
| 143 | private _renew(touch: Touch) { |
| 144 | if (!this._has(touch)) { |
| 145 | return; |
| 146 | } |
| 147 | |
| 148 | const tracker = this._touchList[touch.identifier]; |
| 149 | |
| 150 | tracker.update(touch); |
| 151 | } |
| 152 | |
| 153 | private _delete(touch: Touch) { |
| 154 | delete this._touchList[touch.identifier]; |