(instance, props, prevProps = {})
| 131 | } |
| 132 | |
| 133 | function applyGroupProps(instance, props, prevProps = {}) { |
| 134 | applyNodeProps(instance, props, prevProps); |
| 135 | |
| 136 | instance.width = props.width; |
| 137 | instance.height = props.height; |
| 138 | } |
| 139 | |
| 140 | function applyNodeProps(instance, props, prevProps = {}) { |
| 141 | const scaleX = getScaleX(props); |
nothing calls this directly
no test coverage detected