* Gets the singleton instance of SequenceManager.
()
| 198 | * Gets the singleton instance of SequenceManager. |
| 199 | */ |
| 200 | static getInstance(): SequenceManager { |
| 201 | if (!SequenceManager.#instance) { |
| 202 | SequenceManager.#instance = new SequenceManager() |
| 203 | } |
| 204 | return SequenceManager.#instance |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * Resets the singleton instance. Useful for testing. |
no outgoing calls
no test coverage detected