(e: PointerEvent)
| 1160 | }; |
| 1161 | |
| 1162 | const clearTapCandidateIfMatches = (e: PointerEvent): void => { |
| 1163 | if (!tapCandidate) return; |
| 1164 | if (!e.isPrimary) return; |
| 1165 | if (e.pointerId !== tapCandidate.pointerId) return; |
| 1166 | tapCandidate = null; |
| 1167 | }; |
| 1168 | |
| 1169 | const onPointerMove = (e: PointerEvent): void => { |
| 1170 | if (disposed) return; |
no outgoing calls
no test coverage detected