* Get the default action alias. * @return {?string}
()
| 465 | * @return {?string} |
| 466 | */ |
| 467 | getDefaultActionAlias() { |
| 468 | devAssert( |
| 469 | this.isUpgraded(), |
| 470 | 'Cannot get default action alias of unupgraded element' |
| 471 | ); |
| 472 | return this.impl_.getDefaultActionAlias(); |
| 473 | } |
| 474 | |
| 475 | /** @return {boolean} */ |
| 476 | isBuilding() { |
nothing calls this directly
no test coverage detected