| 325 | |
| 326 | bool SetInternalCapacity(index_t new_capacity); |
| 327 | bool Expand() |
| 328 | // Expands mFields by at least one field. |
| 329 | { |
| 330 | return SetInternalCapacity(mFields.Capacity() ? mFields.Capacity() * 2 : 4); |
| 331 | } |
| 332 | |
| 333 | protected: |
| 334 | ResultType CallAsMethod(ExprTokenType &aFunc, ResultToken &aResultToken, ExprTokenType &aThisToken, ExprTokenType *aParam[], int aParamCount); |