* Set an array property after checking that the new value is an * array.
(propertyName, value)
| 657 | * array. |
| 658 | */ |
| 659 | _setArrayProperty(propertyName, value) { |
| 660 | if (this._doArrayCheck(propertyName, value)) { |
| 661 | this[propertyName] = value; |
| 662 | } |
| 663 | } |
| 664 | |
| 665 | /** |
| 666 | * Check that a value isn't undefined and is an array. |
nothing calls this directly
no test coverage detected