* return if this is the field of an pre-itemized array member */
| 275 | * return if this is the field of an pre-itemized array member |
| 276 | */ |
| 277 | bool |
| 278 | Variable::is_virtual(void) const |
| 279 | { |
| 280 | if (field_var_of) { |
| 281 | return field_var_of->is_virtual(); |
| 282 | } |
| 283 | if (isArray) { |
| 284 | return ((const ArrayVariable*)this)->collective==0; |
| 285 | } |
| 286 | return false; |
| 287 | } |
| 288 | |
| 289 | /////////////////////////////////////////////////////////////////////////////// |
| 290 | /* check if field variables exists in this struct |
no outgoing calls
no test coverage detected