@override
()
| 458 | |
| 459 | /** @override */ |
| 460 | ensureLoaded() { |
| 461 | const Ctor = /** @type {typeof PreactBaseElement} */ ( |
| 462 | /** @type {?} */ (this.constructor) |
| 463 | ); |
| 464 | if (!Ctor.loadable) { |
| 465 | return; |
| 466 | } |
| 467 | this.mutateProps({'loading': Loading_Enum.EAGER}); |
| 468 | this.resetLoading_ = true; |
| 469 | } |
| 470 | |
| 471 | /** @override */ |
| 472 | mountCallback() { |
nothing calls this directly
no test coverage detected