* return if this is the field of an array member */
| 263 | * return if this is the field of an array member |
| 264 | */ |
| 265 | bool |
| 266 | Variable::is_array_field(void) const |
| 267 | { |
| 268 | if (field_var_of) { |
| 269 | return field_var_of->is_array_field(); |
| 270 | } |
| 271 | return isArray; |
| 272 | } |
| 273 | |
| 274 | /* |
| 275 | * return if this is the field of an pre-itemized array member |
no outgoing calls
no test coverage detected