(value)
| 156 | return (privateProp in this) ? this[privateProp] : defaultValue |
| 157 | }, |
| 158 | set(value) { |
| 159 | let lastVal = this[privateProp] |
| 160 | if (lastVal !== value) { |
| 161 | this[privateProp] = value |
| 162 | this._matrixChanged = true |
| 163 | } |
| 164 | } |
| 165 | }) |
| 166 | } |
| 167 | defineTransformProp('x', 0) |
nothing calls this directly
no outgoing calls
no test coverage detected