@override
()
| 470 | |
| 471 | /** @override */ |
| 472 | mountCallback() { |
| 473 | discover(this.element); |
| 474 | const Ctor = /** @type {typeof PreactBaseElement} */ ( |
| 475 | /** @type {?} */ (this.constructor) |
| 476 | ); |
| 477 | if (Ctor.loadable && this.getProp('loading') != Loading_Enum.AUTO) { |
| 478 | this.mutateProps({'loading': Loading_Enum.AUTO}); |
| 479 | this.resetLoading_ = false; |
| 480 | } |
| 481 | } |
| 482 | |
| 483 | /** @override */ |
| 484 | unmountCallback() { |
nothing calls this directly
no test coverage detected