* Is variable an array. * @return true if array, false if not */
| 443 | * @return true if array, false if not |
| 444 | */ |
| 445 | bool isArray() const { |
| 446 | return getFlag(fIsArray) && !getFlag(fIsPointer); |
| 447 | } |
| 448 | |
| 449 | /** |
| 450 | * Is pointer variable. |
no test coverage detected