* */
| 164 | * |
| 165 | */ |
| 166 | StatementArrayOp::StatementArrayOp(Block* b, const ArrayVariable* av, |
| 167 | const std::vector<const Variable*>& cvs, |
| 168 | const std::vector<int>& inits, |
| 169 | const std::vector<int>& incrs, |
| 170 | const Block *body) |
| 171 | : Statement(eArrayOp, b), |
| 172 | array_var(av), |
| 173 | ctrl_vars(cvs), |
| 174 | inits(inits), |
| 175 | incrs(incrs), |
| 176 | body(body), |
| 177 | init_value(0) |
| 178 | { |
| 179 | // Nothing else to do. |
| 180 | } |
| 181 | |
| 182 | /* |
| 183 | * |
nothing calls this directly
no outgoing calls
no test coverage detected