| 46 | } |
| 47 | |
| 48 | std::string array_zero_indices(AST_Array* arr) |
| 49 | { |
| 50 | std::string indices; |
| 51 | for (ACE_CDR::ULong i = 1; i < arr->n_dims(); ++i) { |
| 52 | indices += "[0]"; |
| 53 | } |
| 54 | return indices; |
| 55 | } |
| 56 | |
| 57 | std::string array_dims(AST_Type* type, ACE_CDR::ULong& elems) |
| 58 | { |
no outgoing calls
no test coverage detected