()
| 198 | } |
| 199 | |
| 200 | initBuiltinProps() { |
| 201 | this.props.has(getConvertedExtraKey('hidden')) || this.props.add(getConvertedExtraKey('hidden'), false) |
| 202 | this.props.has(getConvertedExtraKey('locked')) || this.props.add(getConvertedExtraKey('locked'), false) |
| 203 | this.props.has(getConvertedExtraKey('title')) || this.props.add(getConvertedExtraKey('title'), '') |
| 204 | this.props.has(getConvertedExtraKey('loop')) || this.props.add(getConvertedExtraKey('loop'), undefined) |
| 205 | this.props.has(getConvertedExtraKey('condition')) || this.props.add(getConvertedExtraKey('condition'), true) |
| 206 | } |
| 207 | |
| 208 | private initProps(props: PropsMap) { |
| 209 | return this.document.designer.transformProps(props, this, TRANSFORM_STAGE.INIT) |
no test coverage detected