| 448 | } |
| 449 | |
| 450 | bool isArray(AST_Type *t) |
| 451 | { |
| 452 | if (t->node_type() == AST_Decl::NT_typedef) { |
| 453 | AST_Typedef *td = dynamic_cast<AST_Typedef*>(t); |
| 454 | t = td->primitive_base_type(); |
| 455 | } |
| 456 | |
| 457 | return t->node_type() == AST_Decl::NT_array; |
| 458 | } |
| 459 | |
| 460 | bool isObjref(AST_Type *t) |
| 461 | { |
no outgoing calls
no test coverage detected