()
| 1 | class Level{ |
| 2 | constructor() { |
| 3 | this.levelImage = null; |
| 4 | this.lines = []; |
| 5 | this.levelNo =0; |
| 6 | this.isBlizzardLevel = false; |
| 7 | this.isIceLevel = false; |
| 8 | this.coins = []; |
| 9 | this.hasProgressionCoins = false; |
| 10 | } |
| 11 | |
| 12 | show(){ |
| 13 | push(); |
nothing calls this directly
no outgoing calls
no test coverage detected