()
| 878 | onInvalidation(changeInfo: ChangeInfo): void { } // eslint-disable-line |
| 879 | |
| 880 | updateAttributes() { |
| 881 | const ctor = this.constructor as typeof UI5Element; |
| 882 | const props = ctor.getMetadata().getProperties(); |
| 883 | for (const [prop, propData] of Object.entries(props)) { // eslint-disable-line |
| 884 | this._updateAttribute(prop, (this as unknown as Record<string, PropertyValue>)[prop]); |
| 885 | } |
| 886 | } |
| 887 | |
| 888 | /** |
| 889 | * Do not call this method directly, only intended to be called by js |
nothing calls this directly
no test coverage detected
searching dependent graphs…