(props)
| 48 | } |
| 49 | |
| 50 | setProps(props) { |
| 51 | if ('effects' in props) { |
| 52 | // Compare effects against each other shallowly |
| 53 | if (!deepEqual(props.effects, this.effects, 1)) { |
| 54 | this._setEffects(props.effects); |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | needsRedraw(opts = {clearRedrawFlags: false}): false | string { |
| 60 | const redraw = this._needsRedraw; |
nothing calls this directly
no test coverage detected