* Is array or pointer variable. * @return true if pointer or array, false otherwise */
| 473 | * @return true if pointer or array, false otherwise |
| 474 | */ |
| 475 | bool isArrayOrPointer() const { |
| 476 | return getFlag(fIsArray) || getFlag(fIsPointer); |
| 477 | } |
| 478 | |
| 479 | /** |
| 480 | * Is reference variable. |