| 897 | // |
| 898 | |
| 899 | bool Array::Append(ExprTokenType &aValue) |
| 900 | { |
| 901 | if (mLength == MaxIndex || !EnsureCapacity(mLength + 1)) |
| 902 | return false; |
| 903 | auto &item = mItem[mLength++]; |
| 904 | item.Minit(); |
| 905 | return item.Assign(aValue); |
| 906 | } |
| 907 | |
| 908 | |
| 909 | // |
no test coverage detected