()
| 3725 | } |
| 3726 | } |
| 3727 | function exit() { |
| 3728 | if (--enterCount === 0) { |
| 3729 | mark(endMarkName); |
| 3730 | measure(measureName, startMarkName, endMarkName); |
| 3731 | } |
| 3732 | else if (enterCount < 0) { |
| 3733 | ts.Debug.fail("enter/exit count does not match."); |
| 3734 | } |
| 3735 | } |
| 3736 | } |
| 3737 | performance.createTimer = createTimer; |
| 3738 | performance.nullTimer = { enter: ts.noop, exit: ts.noop }; |
no test coverage detected
searching dependent graphs…