(key: string, createIfNone = true)
| 815 | } |
| 816 | |
| 817 | getExtraProp(key: string, createIfNone = true): IProp | null { |
| 818 | return this.props.get(getConvertedExtraKey(key), createIfNone) || null; |
| 819 | } |
| 820 | |
| 821 | setExtraProp(key: string, value: IPublicTypeCompositeValue) { |
| 822 | this.getProp(getConvertedExtraKey(key), true)?.setValue(value); |
no test coverage detected