(id: SuspenseNode['id'])
| 620 | } |
| 621 | |
| 622 | getSuspenseByID(id: SuspenseNode['id']): SuspenseNode | null { |
| 623 | const suspense = this._idToSuspense.get(id); |
| 624 | if (suspense === undefined) { |
| 625 | console.warn(`No suspense found with id "${id}"`); |
| 626 | return null; |
| 627 | } |
| 628 | |
| 629 | return suspense; |
| 630 | } |
| 631 | |
| 632 | // Returns a tuple of [id, index] |
| 633 | getElementsWithErrorsAndWarnings(): ErrorAndWarningTuples { |
no test coverage detected