()
| 32 | } |
| 33 | |
| 34 | function zeroStats(): VirtualScrollStatsSnapshot { |
| 35 | return { |
| 36 | samples: 0, |
| 37 | maxItemCount: 0, |
| 38 | maxMountedCount: 0, |
| 39 | maxMeasuredMountedCount: 0, |
| 40 | maxUnmeasuredMountedCount: 0, |
| 41 | maxHeightCacheSize: 0, |
| 42 | maxMountedRefCount: 0, |
| 43 | maxViewportHeight: 0, |
| 44 | maxScrollTop: 0, |
| 45 | maxTopSpacer: 0, |
| 46 | maxBottomSpacer: 0, |
| 47 | maxTotalHeight: 0, |
| 48 | stickySamples: 0, |
| 49 | clampEnabledSamples: 0, |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | let stats = zeroStats() |
| 54 |
no outgoing calls
no test coverage detected