* */
| 77 | * |
| 78 | */ |
| 79 | Statement* |
| 80 | StatementArrayOp::make_random(CGContext &cg_context) |
| 81 | { |
| 82 | bool ary_init = rnd_flipcoin(5); |
| 83 | ERROR_GUARD(NULL); |
| 84 | if (ary_init) { |
| 85 | return make_random_array_init(cg_context); |
| 86 | } |
| 87 | StatementFor* sf = StatementFor::make_random_array_loop(cg_context); |
| 88 | return sf; |
| 89 | } |
| 90 | |
| 91 | StatementArrayOp * |
| 92 | StatementArrayOp::make_random_array_init(CGContext &cg_context) |
nothing calls this directly
no test coverage detected