()
| 136672 | --frame; |
| 136673 | } |
| 136674 | function wake() { |
| 136675 | clockNow = (clockLast = clock.now()) + clockSkew; |
| 136676 | frame = timeout = 0; |
| 136677 | try { |
| 136678 | timerFlush(); |
| 136679 | } finally{ |
| 136680 | frame = 0; |
| 136681 | nap(); |
| 136682 | clockNow = 0; |
| 136683 | } |
| 136684 | } |
| 136685 | function poke() { |
| 136686 | var now1 = clock.now(), delay = now1 - clockLast; |
| 136687 | if (delay > pokeDelay) clockSkew -= delay, clockLast = now1; |
nothing calls this directly
no test coverage detected