* Is variable a pointer to an array * @return true if pointer to array, false otherwise */
| 459 | * @return true if pointer to array, false otherwise |
| 460 | */ |
| 461 | bool isPointerToArray() const { |
| 462 | return isPointer() && getFlag(fIsArray); |
| 463 | } |
| 464 | |
| 465 | /** |
| 466 | * Is variable an array of pointers |