()
| 1041 | } |
| 1042 | |
| 1043 | private canStart(): boolean { |
| 1044 | return ( |
| 1045 | !this.gestureOrAnimationInProgress && |
| 1046 | !!this.swipeGesture && |
| 1047 | !this.isTransitioning && |
| 1048 | this.transInstr.length === 0 && |
| 1049 | this.canGoBackSync() |
| 1050 | ); |
| 1051 | } |
| 1052 | |
| 1053 | private onStart() { |
| 1054 | this.gestureOrAnimationInProgress = true; |
nothing calls this directly
no test coverage detected