()
| 204 | } |
| 205 | |
| 206 | trigger(): void { |
| 207 | if (this.flags & EffectFlags.PAUSED) { |
| 208 | pausedQueueEffects.add(this) |
| 209 | } else if (this.scheduler) { |
| 210 | this.scheduler() |
| 211 | } else { |
| 212 | this.runIfDirty() |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * @internal |
no test coverage detected