()
| 135 | } |
| 136 | |
| 137 | resume(): void { |
| 138 | if (this.flags & EffectFlags.PAUSED) { |
| 139 | this.flags &= ~EffectFlags.PAUSED |
| 140 | if (pausedQueueEffects.has(this)) { |
| 141 | pausedQueueEffects.delete(this) |
| 142 | this.trigger() |
| 143 | } |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * @internal |
no test coverage detected